2023-07-16 02:15:55 -04:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
|
|
|
|
project(lucore
|
|
|
|
DESCRIPTION "lucore - shared core stuff for the lcpu native projects"
|
|
|
|
LANGUAGES CXX
|
|
|
|
)
|
|
|
|
|
2023-07-16 05:40:38 -04:00
|
|
|
add_library(lucore
|
|
|
|
src/Assert.cpp
|
2023-07-17 06:59:20 -04:00
|
|
|
src/Logger.cpp
|
2023-07-18 05:48:59 -04:00
|
|
|
|
|
|
|
src/OsLibrary.cpp
|
|
|
|
src/Library.cpp
|
2023-07-16 05:40:38 -04:00
|
|
|
)
|
2023-07-16 02:15:55 -04:00
|
|
|
|
2023-07-16 05:40:38 -04:00
|
|
|
target_compile_features(lucore PUBLIC cxx_std_20)
|
|
|
|
target_include_directories(lucore PUBLIC ${PROJECT_SOURCE_DIR}/include)
|
2023-07-16 02:15:55 -04:00
|
|
|
|
|
|
|
add_library(lucore::lucore ALIAS lucore)
|