aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/imguizmo/CMakeLists.txt
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/imguizmo/CMakeLists.txt
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/imguizmo/CMakeLists.txt')
-rw-r--r--vcpkg/ports/imguizmo/CMakeLists.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/vcpkg/ports/imguizmo/CMakeLists.txt b/vcpkg/ports/imguizmo/CMakeLists.txt
new file mode 100644
index 0000000..03831cb
--- /dev/null
+++ b/vcpkg/ports/imguizmo/CMakeLists.txt
@@ -0,0 +1,58 @@
+cmake_minimum_required(VERSION 3.8)
+project(imguizmo)
+
+set(CMAKE_CXX_STANDARD 11)
+
+find_package(imgui CONFIG REQUIRED)
+get_target_property(IMGUI_INCLUDE_DIRS imgui::imgui
+ INTERFACE_INCLUDE_DIRECTORIES
+)
+
+add_library(${PROJECT_NAME} "")
+
+target_include_directories(
+ ${PROJECT_NAME}
+ PUBLIC
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
+ $<INSTALL_INTERFACE:include>
+ PRIVATE
+ ${IMGUI_INCLUDE_DIRS}
+)
+
+target_sources(
+ ${PROJECT_NAME}
+ PRIVATE
+ GraphEditor.cpp
+ ImCurveEdit.cpp
+ ImGradient.cpp
+ ImGuizmo.cpp
+ ImSequencer.cpp
+)
+
+install(
+ TARGETS ${PROJECT_NAME}
+ EXPORT ${PROJECT_NAME}-target
+ ARCHIVE DESTINATION lib
+ ARCHIVE DESTINATION lib
+ RUNTIME DESTINATION bin
+)
+
+if (NOT IMGUIZMO_SKIP_HEADERS)
+ install(
+ FILES
+ GraphEditor.h
+ ImCurveEdit.h
+ ImGradient.h
+ ImGuizmo.h
+ ImSequencer.h
+ ImZoomSlider.h
+ DESTINATION include
+ )
+endif()
+
+install(
+ EXPORT ${PROJECT_NAME}-target
+ NAMESPACE ${PROJECT_NAME}::
+ FILE ${PROJECT_NAME}-config.cmake
+ DESTINATION share/${PROJECT_NAME}
+)