reformatting some lines in CMakeLists

pull/11/head
Sara 2023-06-26 17:24:57 +02:00
parent 20ca626acf
commit 484db1961a
1 changed files with 6 additions and 3 deletions

View File

@ -17,14 +17,17 @@ find_package(SDL2)
find_package(SDL2_image)
find_package(SDL2_ttf)
file(GLOB_RECURSE
file(
GLOB_RECURSE
SOURCE_C
"${CMAKE_SOURCE_DIR}/src/**.c")
file(GLOB_RECURSE
file(
GLOB_RECURSE
SOURCE_CPP
"${CMAKE_SOURCE_DIR}/src/**.c*")
add_executable(${PROJECT}
add_executable(
${PROJECT}
${SOURCE_C}
${SOURCE_CPP})