Search found 6 matches

by Dawis67
Tue Mar 31, 2020 1:16 am
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

Re: Cannot open file "wxbase31ud.lib" LNK1104 error

doublemax wrote: Mon Mar 30, 2020 11:44 pm

Code: Select all

$(wxwin)/include/lib/vc_lib
This should be:

Code: Select all

$(wxwin)/lib/vc_lib
Thanks. FFS quite embarrassing error to struggle with for hours. I cant believe i didnt see it. Again, thanks a lot
by Dawis67
Mon Mar 30, 2020 11:10 pm
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

Re: Cannot open file "wxbase31ud.lib" LNK1104 error

Ok, i looked around and compared the linkers additional library directories. The main difference i think is that the file location for the minimal sample file is in the wxWidgets directory while mine isnt. The video instructed to create global variable "wxwin" and use that so: I have C++/G...
by Dawis67
Mon Mar 30, 2020 10:51 pm
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

Re: Cannot open file "wxbase31ud.lib" LNK1104 error

Ok, i opened /samples/minimal/minimal_vc15.sln (the highest i found) and built it with "Build Solution". Did it compile and did you actually run the sample? This was all just to confirm that the building of the wxWidgets libraries was successful. If yes, then it's probably just a matter o...
by Dawis67
Mon Mar 30, 2020 10:34 pm
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

Re: Cannot open file "wxbase31ud.lib" LNK1104 error

Yes, In <wxdir>/samples/minimal/, use the highest version solution file. Ok, i opened /samples/minimal/minimal_vc15.sln (the highest i found) and built it with "Build Solution". This however does not seem to change the error in my original GUI sln. It still throws the same linking error.
by Dawis67
Mon Mar 30, 2020 10:25 pm
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

Re: Cannot open file "wxbase31ud.lib" LNK1104 error

Then proceeded to build it manually by opening build/msw/wx_vc16.sln as i didnt find any higher versions. I used the batch build and used select all option, so im guessing i have built everything there is to build. So building the wxWidgets libraries was successful? If yes, then the next step shoul...
by Dawis67
Mon Mar 30, 2020 10:09 pm
Forum: Compiler / Linking / IDE Related
Topic: [SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error
Replies: 11
Views: 5398

[SOLVED] Cannot open file "wxbase31ud.lib" LNK1104 error

Hi. I was looking to get started building GUI to one of my programms, and i have never done GUIs before. I went with the OneLoneCoder's tutorial on GUIs on YT. I followed his instructions and created the same files, and did the same configuration, but i cannot get my file to build. Once i try to bui...