Cannot load MSVC project correctly...

Do you need help? Ask here!

Bug reporting belongs here: http://developer.wz2100.net/newticket
PZI
Greenhorn
Posts: 13
Joined: 05 Mar 2011, 19:53
Location: Lazio, Italy

Cannot load MSVC project correctly...

Post by PZI »

Preamble: Running Windows7-32 on a laptop (Presario CQ61 220sl)

So, I REALLY want to contribute to this project disregarding my basic knowledge of C++, therefore as explained in wiki I managed to clone the "repo" (is my slang right? xD) with Git; what I didn't know is that the repo has a project structure I was oblivious of (I was just opening headers and other files with either Notepad or Dev-C++, ugh), then i figured out there was a "Solution" file in the win32, so I tried to run it with a fresh install of VC2010Express... which could have loaded the project perfectly if not for this report:

Code: Select all

C:\Users\Project2100\warzone2100\* : error  : The imported project "C:\Users\Project2100\warzone2100\devpkg\FlexBison.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.  C:\Users\Project2100\warzone2100\*

//Where '*' corresponds to 4 separate "projects":
//            "src\warzone2100.vcxproj";
//            "lib\script\script.vcxproj";
//            "gamelib\gamelib.vcxproj";
//            "lib\framework\framework.vcxproj";
In response to this, and recalling a pair of programs noted in wiki that are someway needed to the project (Bison/Flex), I downloaded them...

...and there is where I am at a stop: I cannot figure out how to effectively "use" these 2 programs to make the project work correctly >.<

Could anyone give any tips on how to go on? :stressed:

Note: It's the first time i try to participate on a common project, so I am certain I'm missing a lot of other things... :oops: :oops:
Feel free to add any unrelated advice
User avatar
effigy
Regular
Regular
Posts: 1217
Joined: 22 Jan 2010, 03:21

Re: Cannot load MSVC project correctly...

Post by effigy »

You may want to join the development IRC channel (#warzone2100-dev) if you have a nick registered on Freenode.
This is why some features aren't implemented: http://forums.wz2100.net/viewtopic.php?f=30&t=7490&view=unread#p87241
User avatar
Buginator
Professional
Professional
Posts: 3285
Joined: 04 Nov 2007, 02:20

Re: Cannot load MSVC project correctly...

Post by Buginator »

PZI wrote:Preamble: Running Windows7-32 on a laptop (Presario CQ61 220sl)
Could anyone give any tips on how to go on? :stressed:

Note: It's the first time i try to participate on a common project, so I am certain I'm missing a lot of other things... :oops: :oops:
Feel free to add any unrelated advice
In short, the dev package you have is too old.
There will be a new dev package just as soon as my may machine is back up, I needed to RMA the video card.

If you really want to get started ASAP, then your best bet is to revert the VS2k10 changes, load up the old project file (it will autoconvert to VS2k10), and then you must compile all the libs that we use, yourself (look at the linux compile guide, and you basically need to get all those libs, but compile them for windows using VS2k10)
That should do it, but I am unsure at your tech level, so I can't say how easy this would be.

Sorry about the delay. :stressed:
and it ends here.
PZI
Greenhorn
Posts: 13
Joined: 05 Mar 2011, 19:53
Location: Lazio, Italy

Re: Cannot load MSVC project correctly...

Post by PZI »

Sorry for the late reply...
Buginator wrote:There will be a new dev package just as soon as my may machine is back up, I needed to RMA the video card.

If you really want to get started ASAP, then your best bet is to revert the VS2k10 changes, load up the old project file (it will autoconvert to VS2k10), and then you must compile all the libs that we use, yourself (look at the linux compile guide, and you basically need to get all those libs, but compile them for windows using VS2k10)
That should do it, but I am unsure at your tech level, so I can't say how easy this would be.
...my tech level (which I am figuring now is damn low) is whispering me to wait for further updates... :stressed:

My experience with C ranges only on single-file programs; exploring through the /src folder made me :shock:.

Well, I guess I just need to be patient now...