Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 rader
1.0 KiB

  1. noinst_PROGRAMS = test-map editor
  2. noinst_LIBRARIES = libcommon.a
  3. libcommon_a_SOURCES = \
  4. core.h matrix.h game.cpp game.h tiler.cpp tiler.h dict.cpp dict.h \
  5. scene.cpp scene.h font.cpp font.h layer.cpp layer.h map.cpp map.h \
  6. entity.cpp entity.h ticker.cpp ticker.h tileset.cpp tileset.h \
  7. forge.cpp forge.h video.cpp video.h timer.cpp timer.h bitfield.h \
  8. profiler.cpp profiler.h input.h input.cpp \
  9. debugfps.cpp debugfps.h debugsprite.cpp debugsprite.h \
  10. debugrecord.cpp debugrecord.h
  11. libcommon_a_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image`
  12. test_map_SOURCES = test-map.cpp sdlinput.cpp sdlinput.h
  13. test_map_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image`
  14. test_map_LDADD = libcommon.a
  15. test_map_LDFLAGS = `pkg-config --libs sdl gl SDL_image` -lpipi
  16. editor_SOURCES = gtk/editor.cpp
  17. editor_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image gtk+-2.0 gtkgl-2.0`
  18. editor_LDADD = libcommon.a
  19. editor_LDFLAGS = `pkg-config --libs sdl gl gtk+-2.0 gtkgl-2.0 SDL_image`
  20. EXTRA_DIST = gtk/editor.xml