A 2D tile-based sandbox game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 359B

12345678
  1. add_library(imgui SHARED
  2. ${PROJECT_SOURCE_DIR}/third_party/imgui/imgui_demo.cpp
  3. ${PROJECT_SOURCE_DIR}/third_party/imgui/imgui_draw.cpp
  4. ${PROJECT_SOURCE_DIR}/third_party/imgui/imgui_widgets.cpp
  5. ${PROJECT_SOURCE_DIR}/third_party/imgui/imgui.cpp)
  6. set_target_properties(imgui PROPERTIES CXX_CLANG_TIDY "")
  7. install(TARGETS imgui DESTINATION swan/third_party)