mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-15 08:23:17 -03:00
15 lines
220 B
CMake
15 lines
220 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)
|