mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
4a87003408
* Vulkan backend updated. * zlib replaced with miniz. * FileReader is now 64 bit capable. * jpeg replaced with stb-image. * CMake project warnings fixed.
15 lines
258 B
CMake
15 lines
258 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}/../../source/common/thirdparty)
|
|
|
|
# add subdirs
|
|
|
|
add_subdirectory(src)
|