mirror of
https://github.com/yuzu-emu/discord-rpc.git
synced 2024-11-23 22:15:39 +01:00
10 lines
252 B
CMake
10 lines
252 B
CMake
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
|
|
) |