5 lines
217 B
CMake
5 lines
217 B
CMake
add_executable(dmf-node-2110 main.cpp)
|
|
target_compile_features(dmf-node-2110 PRIVATE cxx_std_20)
|
|
target_link_libraries(dmf-node-2110 PRIVATE dmf-shared mtl::mtl)
|
|
install(TARGETS dmf-node-2110 RUNTIME DESTINATION bin)
|