mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
20 lines
518 B
CMake
20 lines
518 B
CMake
#######################################################################
|
|
# The Embedded Template Library (https://www.etlcpp.com/)
|
|
#######################################################################
|
|
cmake_minimum_required(VERSION 3.5.0)
|
|
project(etl)
|
|
|
|
option(BUILD_TESTS "Build unit tests" OFF)
|
|
option(NO_STL "No STL" OFF)
|
|
|
|
add_library(etl INTERFACE)
|
|
|
|
target_include_directories(etl INTERFACE include)
|
|
|
|
target_compile_definitions(etl INTERFACE)
|
|
|
|
if (BUILD_TESTS)
|
|
enable_testing()
|
|
add_subdirectory(test)
|
|
endif()
|