OpenXcom Forum
Contributions => Programming => Topic started by: michal on October 21, 2010, 02:17:01 pm
-
In Makefile (most probably Makefile.dingoo too)
line
SRCS = $(wildcard *.cpp)
needs change to:
SRCS = $(wildcard *.cpp */*.cpp)
Because now it only compiles main.cpp :)
-
The makefile is all fixed up, I'm not sure if it'll make Linux gurus cry tears of joy or horror. :P
-
I'm sorry but still a little problem in the 2008 vcproj file:
CommandLine="copy /y ..\deps\SDL\lib\*.dll ..\bin\">
needs to change to
CommandLine="copy /y ..\deps\SDL\lib\*.dll ..\bin\"
without the ">" at the end.
There are 2 occurences in the file.
-
Fixed.