task_plan/CMakeLists.txt

37 lines
1.3 KiB
CMake
Raw Normal View History

2026-05-20 08:00:11 +00:00
cmake_minimum_required(VERSION 3.14)
project(etms
VERSION 1.0.0
2026-05-20 09:17:29 +00:00
DESCRIPTION "Event and Task Management System - BTPS Core Component"
2026-05-20 08:00:11 +00:00
LANGUAGES CXX
)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
2026-05-20 09:17:29 +00:00
# ── MSVC UTF-8 support ──────────────────────────────────────────────
2026-05-20 08:00:11 +00:00
if (MSVC)
add_compile_options(/utf-8)
endif()
2026-05-20 09:17:29 +00:00
# ── Project sources ─────────────────────────────────────────────────
set(ETMS_SOURCES
src/main.cpp
src/app.cpp
2026-05-20 08:00:11 +00:00
)
2026-05-20 09:17:29 +00:00
set(ETMS_HEADERS
include/app.hpp
2026-05-20 08:00:11 +00:00
)
2026-05-20 09:17:29 +00:00
# ── Main executable ─────────────────────────────────────────────────
add_executable(etms ${ETMS_SOURCES} ${ETMS_HEADERS})
target_include_directories(etms PRIVATE include)
2026-05-20 08:00:11 +00:00
2026-05-20 09:17:29 +00:00
# ── Test executable ─────────────────────────────────────────────────
add_executable(etms_test
tests/basic_test.cpp
src/app.cpp
2026-05-20 08:00:11 +00:00
)
2026-05-20 09:17:29 +00:00
target_include_directories(etms_test PRIVATE include)