11 lines
182 B
CMake
11 lines
182 B
CMake
add_library(KVGToolsCommon INTERFACE)
|
|
|
|
target_compile_features(KVGToolsCommon
|
|
INTERFACE
|
|
cxx_std_23
|
|
)
|
|
|
|
target_include_directories(KVGToolsCommon
|
|
INTERFACE
|
|
"Include"
|
|
)
|