mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-19 08:55:33 +00:00
15 lines
224 B
CMake
15 lines
224 B
CMake
cmake_minimum_required (VERSION 3.2.0...4.1.1)
|
|
project (DiscordRPC)
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
# format
|
|
file(GLOB_RECURSE ALL_SOURCE_FILES
|
|
include/*.h
|
|
src/*.cpp src/*.h src/*.c
|
|
)
|
|
|
|
# add subdirs
|
|
|
|
add_subdirectory(src)
|