You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
200 B
CMake
13 lines
200 B
CMake
2 years ago
|
cmake_minimum_required(VERSION 3.23)
|
||
|
project(rpgpt C)
|
||
|
|
||
|
set(CMAKE_C_STANDARD 11)
|
||
|
|
||
|
include_directories(.)
|
||
|
include_directories(gen)
|
||
|
include_directories(thirdparty)
|
||
|
|
||
|
add_executable(rpgpt
|
||
|
main.c
|
||
|
)
|