mirror of
https://git.suyu.dev/suyu/discord-rpc.git
synced 2025-12-22 05:46:36 +01:00
Trying out cmake
This commit is contained in:
parent
4b77b81b2d
commit
1a83c2872c
2 changed files with 7 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue