mirror of
https://github.com/yuzu-emu/discord-rpc.git
synced 2024-11-09 23:38:41 +00:00
Trying out cmake
This commit is contained in:
parent
4b77b81b2d
commit
1a83c2872c
4
CMakeLists.txt
Normal file
4
CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
cmake_minimum_required (VERSION 3.7.0)
|
||||
project (DiscordRPCExample)
|
||||
|
||||
add_subdirectory(src)
|
3
src/CMakeLists.txt
Normal file
3
src/CMakeLists.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
add_library(discord-rpc discord-rpc.cpp)
|
||||
add_executable(test-client simple.cpp)
|
||||
target_link_libraries(test-client discord-rpc)
|
Loading…
Reference in a new issue