mirror of
				https://github.com/RetroDECK/Duckstation.git
				synced 2025-04-10 19:15:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			776 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			776 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SRCS
 | |
|   include/discord_register.h
 | |
|   include/discord_rpc.h
 | |
|   src/backoff.h
 | |
|   src/connection.h
 | |
|   src/discord_rpc.cpp
 | |
|   src/msg_queue.h
 | |
|   src/rpc_connection.cpp
 | |
|   src/rpc_connection.h
 | |
|   src/serialization.cpp
 | |
|   src/serialization.h
 | |
| )
 | |
| 
 | |
| add_library(discord-rpc ${SRCS})
 | |
| target_include_directories(discord-rpc PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
 | |
| target_link_libraries(discord-rpc rapidjson)
 | |
| 
 | |
| if(WIN32)
 | |
|   target_sources(discord-rpc PRIVATE
 | |
|     src/connection_win.cpp
 | |
|     src/discord_register_win.cpp
 | |
|   )
 | |
| elseif(APPLE)
 | |
|   target_sources(discord-rpc PRIVATE
 | |
|     src/connection_unix.cpp
 | |
|     src/discord_register_osx.m
 | |
|   )
 | |
| elseif(CMAKE_SYSTEM_NAME STREQUAL Linux)
 | |
|   target_sources(discord-rpc PRIVATE
 | |
|     src/connection_unix.cpp
 | |
|     src/discord_register_linux.cpp
 | |
|   )
 | |
| endif()
 | 
