10 lines
209 B
CMake
10 lines
209 B
CMake
add_library(common
|
|
src/serialization.cpp
|
|
)
|
|
|
|
target_include_directories(common
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
)
|
|
|
|
target_compile_features(common PUBLIC cxx_std_17)
|