mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 12:11:25 +00:00
16 lines
294 B
CMake
16 lines
294 B
CMake
cmake_minimum_required (VERSION 3.2.0)
|
|
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)
|