This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/goldnode/CMakeLists.txt
Alexander Skovpen a9c11a472c add autodeploy
2018-09-02 23:36:11 +03:00

11 lines
246 B
CMake

set(goldnode_SOURCES
goldnode.cpp
../golded3/golded3.cpp
)
add_executable(goldnode ${goldnode_SOURCES})
target_link_libraries(goldnode gall)
include_directories(../goldlib/gall ../golded3)
INSTALL(TARGETS goldnode
RUNTIME DESTINATION bin
)