etl/CMakeLists.txt
2020-10-01 17:51:31 +01:00

24 lines
502 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)
add_library(etl INTERFACE)
target_include_directories(etl
INTERFACE
include
)
target_compile_definitions(etl
INTERFACE
)
if (BUILD_TESTS)
enable_testing()
add_subdirectory(test)
endif()