gzdoom/libraries/discordrpc/CMakeLists.txt
Christoph Oelckers 351e0d7ed9 - removed obsolete CMake version requirements.
Most were still at 3.1 which prompts noisy warnings from up-to-date CMake versions.
Version requirements have been removed entirely from dependent subprojects, all others were upped to 3.16.
2023-09-03 09:04:17 +02:00

15 lines
255 B
CMake

project (DiscordRPC)
include(GNUInstallDirs)
# format
file(GLOB_RECURSE ALL_SOURCE_FILES
include/*.h
src/*.cpp src/*.h src/*.c
)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../src/common/thirdparty)
# add subdirs
add_subdirectory(src)