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