refactor: move solver skeleton implementations to cpp

This commit is contained in:
NINI
2026-06-12 02:38:12 +09:00
parent cbd1a6c5d7
commit 825e03dbaf
35 changed files with 1001 additions and 683 deletions
+5 -3
View File
@@ -2,9 +2,11 @@ cmake_minimum_required(VERSION 3.20)
project(FESA LANGUAGES CXX)
add_library(fesa_core INTERFACE)
target_compile_features(fesa_core INTERFACE cxx_std_17)
target_include_directories(fesa_core INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/src)
file(GLOB_RECURSE FESA_CORE_SOURCES CONFIGURE_DEPENDS src/fesa/*.cpp)
add_library(fesa_core STATIC ${FESA_CORE_SOURCES})
target_compile_features(fesa_core PUBLIC cxx_std_17)
target_include_directories(fesa_core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
enable_testing()
add_subdirectory(tests)