silly neatening
This commit is contained in:
parent
f6bda93eaa
commit
3d9f3f0a31
1 changed files with 5 additions and 3 deletions
|
@ -1,8 +1,10 @@
|
|||
# vi: syntax=python
|
||||
import glob
|
||||
|
||||
sources = glob.glob("src/*.cpp") + glob.glob("src/widgets/*.cpp") +\
|
||||
glob.glob("src/serialization/*.cpp") + glob.glob("src/sdl_ttf/*.c")
|
||||
sources = glob.glob("src/*.cpp") +\
|
||||
glob.glob("src/widgets/*.cpp") +\
|
||||
glob.glob("src/serialization/*.cpp") +\
|
||||
glob.glob("src/sdl_ttf/*.c")
|
||||
sources.remove("src/loadscreen_empty.cpp")
|
||||
|
||||
def parse_automake(filename, variable):
|
||||
|
@ -51,7 +53,7 @@ env.Append(CCFLAGS = ["-O2", "-mthreads", "-DHAVE_PYTHON"])
|
|||
env.Append(LINKFLAGS = ["-s", "-mwindows", "-lmingwthrd"])
|
||||
env.Append(CPPPATH = ["src", "src/widgets"])
|
||||
env.Append(LIBS = ["mingw32", "SDLmain", "SDL", "SDL_net", "SDL_mixer", "SDL_image",
|
||||
"intl", "wsock32", "freetype", "python24"])
|
||||
"intl", "wsock32", "freetype", "python24"])
|
||||
|
||||
# Scons stuff
|
||||
env.BuildDir("../build", "src")
|
||||
|
|
Loading…
Add table
Reference in a new issue