blob: ab6b3aae40ea732987519b33294399b46dd6ece3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
file(GLOB IMPLOT_SOURCES *.cpp)
add_library(implot ${IMPLOT_SOURCES})
target_link_libraries(implot
PUBLIC
imgui
)
target_include_directories(implot
PUBLIC
${CMAKE_CURRENT_LIST_DIR}
)
set_target_properties(implot
PROPERTIES
UNITY_BUILD OFF
)
|