diff options
author | hnOsmium0001 <[email protected]> | 2022-04-06 20:52:51 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-06 20:52:51 -0700 |
commit | 3fdc6eb4f2cbeffce9b250beec4d3a2d52a3f534 (patch) | |
tree | 05991741844aa2814b3ac71e2c843ebe07244845 /3rdparty/imgui/CMakeLists.txt | |
parent | ebd42760caaec8330a3c028f31adc7bc0b339d16 (diff) |
Work on moving infrastruture to this project
Diffstat (limited to '3rdparty/imgui/CMakeLists.txt')
-rw-r--r-- | 3rdparty/imgui/CMakeLists.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/3rdparty/imgui/CMakeLists.txt b/3rdparty/imgui/CMakeLists.txt index e0e95b0..5dcd24e 100644 --- a/3rdparty/imgui/CMakeLists.txt +++ b/3rdparty/imgui/CMakeLists.txt @@ -1,8 +1,13 @@ # Note: we are not including files under backend/ here: those are #included in project main source files -file(GLOB IMGUI_HEDAER ${CMAKE_CURRENT_LIST_DIR}/*.h) -file(GLOB IMGUI_SOURCE ${CMAKE_CURRENT_LIST_DIR}/*.cpp) +file(GLOB IMGUI_HEDAER ${CMAKE_CURRENT_LIST_DIR}/source/*.h) +file(GLOB IMGUI_SOURCE ${CMAKE_CURRENT_LIST_DIR}/source/*.cpp) add_library(imgui ${IMGUI_HEDAER} ${IMGUI_SOURCE} ) -target_include_directories(imgui PUBLIC ${CMAKE_CURRENT_LIST_DIR}) +target_include_directories(imgui PUBLIC ${CMAKE_CURRENT_LIST_DIR}/source) + +set_target_properties(imgui +PROPERTIES + UNITY_BUILD OFF +) |