Line | |
---|
1 | |
---|
2 | noinst_PROGRAMS = test-map editor |
---|
3 | |
---|
4 | noinst_LIBRARIES = libcommon.a |
---|
5 | |
---|
6 | libcommon_a_SOURCES = \ |
---|
7 | game.cpp game.h tiler.cpp tiler.h tileset.cpp tileset.h \ |
---|
8 | scene.cpp scene.h font.cpp font.h layer.cpp layer.h map.cpp map.h \ |
---|
9 | joystick.cpp joystick.h asset.cpp asset.h ticker.cpp ticker.h \ |
---|
10 | forge.cpp forge.h video.cpp video.h timer.cpp timer.h \ |
---|
11 | profiler.cpp profiler.h debugfps.cpp debugfps.h |
---|
12 | libcommon_a_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image` |
---|
13 | |
---|
14 | test_map_SOURCES = test-map.cpp sdlinput.cpp sdlinput.h |
---|
15 | test_map_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image` |
---|
16 | test_map_LDADD = libcommon.a |
---|
17 | test_map_LDFLAGS = `pkg-config --libs sdl gl SDL_image` |
---|
18 | |
---|
19 | editor_SOURCES = gtk/editor.cpp |
---|
20 | editor_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image gtk+-2.0 gtkgl-2.0` |
---|
21 | editor_LDADD = libcommon.a |
---|
22 | editor_LDFLAGS = `pkg-config --libs sdl gl gtk+-2.0 gtkgl-2.0 SDL_image` |
---|
23 | EXTRA_DIST = gtk/editor.xml |
---|
24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.