blob: ee02f6ae2ae1763ea1f18e24d3560aae15cdf5a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
file(GLOB IMPLOT_SOURCES *.cpp)
add_library(implot ${IMPLOT_SOURCES})
set_target_properties(implot PROPERTIES UNITY_BUILD OFF)
target_include_directories(implot PRIVATE
${CMAKE_SOURCE_DIR}/3rdparty/implot
${CMAKE_SOURCE_DIR}/3rdparty/imgui
)
set_target_properties(implot
PROPERTIES
UNITY_BUILD OFF
)
|