CMakeLists.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. project( hexon )
  2. cmake_minimum_required( VERSION 2.6 )
  3. set ( CMAKE_BUILD_TYPE Release )
  4. add_definitions (
  5. -Wall
  6. -std=c++14
  7. -O2
  8. )
  9. include_directories (
  10. ../heXon/Urho3D/include
  11. ../heXon/Urho3D/include/Urho3D/ThirdParty
  12. )
  13. set ( hexon_HDRS
  14. apple.h
  15. bubble.h
  16. bullet.h
  17. chaoball.h
  18. chaoflash.h
  19. chaomine.h
  20. chaozap.h
  21. controllable.h
  22. door.h
  23. effect.h
  24. effectmaster.h
  25. enemy.h
  26. explosion.h
  27. flash.h
  28. heart.h
  29. hexocam.h
  30. hitfx.h
  31. inputmaster.h
  32. line.h
  33. luckey.h
  34. mastercontrol.h
  35. muzzle.h
  36. pickup.h
  37. player.h
  38. razor.h
  39. sceneobject.h
  40. seeker.h
  41. spawnmaster.h
  42. spire.h
  43. splatterpillar.h
  44. TailGenerator.h
  45. tile.h
  46. pilot.h
  47. phaser.h
  48. arena.h
  49. lobby.h
  50. highest.h
  51. ship.h
  52. hexonevents.h
  53. gui3d.h
  54. panel.h
  55. coin.h
  56. effectinstance.h
  57. )
  58. set ( hexon_SRCS
  59. apple.cpp
  60. bubble.cpp
  61. bullet.cpp
  62. chaoball.cpp
  63. chaoflash.cpp
  64. chaomine.cpp
  65. chaozap.cpp
  66. controllable.cpp
  67. door.cpp
  68. effect.cpp
  69. effectmaster.cpp
  70. enemy.cpp
  71. explosion.cpp
  72. flash.cpp
  73. heart.cpp
  74. hexocam.cpp
  75. hitfx.cpp
  76. inputmaster.cpp
  77. line.cpp
  78. luckey.cpp
  79. mastercontrol.cpp
  80. muzzle.cpp
  81. pickup.cpp
  82. player.cpp
  83. razor.cpp
  84. sceneobject.cpp
  85. seeker.cpp
  86. spawnmaster.cpp
  87. spire.cpp
  88. splatterpillar.cpp
  89. TailGenerator.cpp
  90. tile.cpp
  91. pilot.cpp
  92. phaser.cpp
  93. arena.cpp
  94. lobby.cpp
  95. highest.cpp
  96. ship.cpp
  97. gui3d.cpp
  98. panel.cpp
  99. coin.cpp
  100. effectinstance.cpp
  101. )
  102. add_executable ( hexon ${hexon_SRCS} ${UIS} ${RSCS} ${TRS} ${MOCS} )
  103. target_link_libraries ( hexon )