diff options
author | rtk0c <[email protected]> | 2022-04-08 22:30:12 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-08 22:30:12 -0700 |
commit | e7ef3f208c109357538b1f68af10bcd78db95c95 (patch) | |
tree | 066d614ae0f079e53602d7c0fd972998c546c8c1 /3rdparty/imguizmo | |
parent | f163e8f37123e651ea80b690793845b31ddb8639 (diff) |
Changeset: 3 More work
Diffstat (limited to '3rdparty/imguizmo')
-rw-r--r-- | 3rdparty/imguizmo/CMakeLists.txt | 13 | ||||
-rw-r--r-- | 3rdparty/imguizmo/source | 0 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/imguizmo/CMakeLists.txt b/3rdparty/imguizmo/CMakeLists.txt new file mode 100644 index 0000000..d4dd45b --- /dev/null +++ b/3rdparty/imguizmo/CMakeLists.txt @@ -0,0 +1,13 @@ +file(GLOB IMGUIZMO_SOURCE ${CMAKE_CURRENT_LIST_DIR}/source/*.cpp) +add_library(ImGuizmo + ${IMGUIZMO_SOURCE} +) +target_include_directories(ImGuizmo PUBLIC + ${CMAKE_SOURCE_DIR}/3rdparty/imgui/source + ${CMAKE_CURRENT_LIST_DIR}/source +) + +set_target_properties(ImGuizmo +PROPERTIES + UNITY_BUILD OFF +) diff --git a/3rdparty/imguizmo/source b/3rdparty/imguizmo/source new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/3rdparty/imguizmo/source |