mirror of
https://github.com/libretro/dolphin
synced 2024-11-08 06:23:55 -05:00
a482299df6
It's annoying to have source files automatically reformatted every time Dolphin is built because it causes git to consider the source tree to be dirty.
15 lines
216 B
CMake
15 lines
216 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
|
|
)
|
|
|
|
# add subdirs
|
|
|
|
add_subdirectory(src)
|