mirror of
https://gitlab.com/niansa/pilang3.git
synced 2025-03-06 20:49:20 +01:00
17 lines
303 B
CMake
17 lines
303 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(pilang3 LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
main.cpp
|
|
pilang.cpp
|
|
modules/std.cpp
|
|
modules/stdio.cpp
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME} PRIVATE
|
|
include/
|
|
)
|