mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 07:34:23 +00:00
11 lines
244 B
CMake
11 lines
244 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(t3dsr C)
|
|
|
|
set(CMAKE_C_STANDARD 17)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
|
|
|
|
include_directories(src)
|
|
|
|
file(GLOB_RECURSE SOURCES CONFIGURE_DEPENDS src/*.c)
|
|
|
|
add_executable(main ${SOURCES}) |