blob: 4fae8f2a57996484175af2f7b8d575dab5a4084f (
plain)
1
2
3
4
5
6
7
8
|
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
)
|