discord-rpc/examples/send-presence/CMakeLists.txt

10 lines
252 B
CMake
Raw Normal View History

2017-07-21 00:59:15 +02:00
include_directories(${PROJECT_SOURCE_DIR}/include)
add_executable(send-presence send-presence.c)
target_link_libraries(send-presence discord-rpc)
install(
TARGETS send-presence
RUNTIME
DESTINATION "bin"
CONFIGURATIONS Release
)