Files
cariflex/tools/EVerest-main/lib/everest/sqlite/CMakeLists.txt
Eric F d398a6ced2 Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
2026-06-08 00:38:27 -04:00

86 lines
2.4 KiB
CMake

cmake_minimum_required(VERSION 3.14)
project(everest-sqlite VERSION 0.1.5
DESCRIPTION "SQLite wrapper for EVerest"
LANGUAGES CXX C
)
find_package(everest-cmake 0.5 REQUIRED)
option(${PROJECT_NAME}_BUILD_TESTING "Build unit tests, used if included as dependency" OFF)
option(BUILD_TESTING "Build unit tests, used if standalone project" OFF)
option(EVEREST_SQLITE_INSTALL "Install the library (shared data might be installed anyway)" ${EVC_MAIN_PROJECT})
if((${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME} OR ${PROJECT_NAME}_BUILD_TESTING) AND BUILD_TESTING)
set(EVEREST_SQLITE_BUILD_TESTING ON)
# this policy allows us to link gcov to targets defined in other directories
if(POLICY CMP0079)
set(CMAKE_POLICY_DEFAULT_CMP0079 NEW)
endif()
endif()
find_package(SQLite3 REQUIRED)
if (NOT DISABLE_EDM)
evc_setup_edm()
# In EDM mode, we can't install exports (because the dependencies usually do not install their exports)
set(EVEREST_SQLITE_INSTALL OFF)
else()
if (EVEREST_SQLITE_BUILD_TESTING)
include(FetchContent)
FetchContent_Declare(
googletest
URL https://github.com/google/googletest/archive/release-1.12.1.zip
)
FetchContent_MakeAvailable(googletest)
endif()
endif()
# options
option(${PROJECT_NAME}_BUILD_TESTING "Build unit tests, used if included as dependency" OFF)
option(BUILD_TESTING "Build unit tests, used if standalone project" OFF)
option(EVEREST_SQLITE_USE_BOOST_FILESYSTEM "Usage of boost/filesystem.hpp instead of std::filesystem" OFF)
add_subdirectory(lib)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
# packaging
if (EVEREST_SQLITE_INSTALL)
set_target_properties(everest_sqlite PROPERTIES EXPORT_NAME sqlite)
install(
TARGETS everest_sqlite
EXPORT everest_sqlite-targets
LIBRARY
)
install(
DIRECTORY include/
TYPE INCLUDE
)
install(
FILES cmake/CollectMigrationFiles.cmake
DESTINATION
${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}/cmake
)
evc_setup_package(
NAME everest-sqlite
NAMESPACE everest
EXPORT everest_sqlite-targets
ADDITIONAL_CONTENT
"find_dependency(SQLite3)"
"include($\{CMAKE_CURRENT_LIST_DIR\}/cmake/CollectMigrationFiles.cmake)"
)
endif()
if(EVEREST_SQLITE_BUILD_TESTING)
include(CTest)
add_subdirectory(tests)
set(CMAKE_BUILD_TYPE Debug)
endif()