mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-25 03:42:05 +00:00
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
16 lines
287 B
CMake
16 lines
287 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
project(imguizmo)
|
|
|
|
add_library(imguizmo STATIC
|
|
ImGuizmo.h
|
|
ImGuizmo.cpp
|
|
)
|
|
|
|
target_include_directories(imguizmo
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..
|
|
)
|
|
|
|
target_link_libraries(imguizmo PUBLIC imgui)
|