42 lines
1.2 KiB
CMake
42 lines
1.2 KiB
CMake
# Copyright (C) 2017 Jonathan Müller <jonathanmueller.dev@gmail.com>
|
|
# This file is subject to the license terms in the LICENSE file
|
|
# found in the top-level directory of this distribution.
|
|
|
|
cmake_minimum_required(VERSION 3.3)
|
|
project(cppast VERSION 0.0)
|
|
|
|
# options
|
|
if(CMAKE_BUILD_TYPE MATCHES Debug)
|
|
set(default_assertions ON)
|
|
else()
|
|
set(default_assertions OFF)
|
|
endif()
|
|
option(CPPAST_ENABLE_ASSERTIONS "whether or not to enable internal assertions for the cppast library" ${default_assertions})
|
|
option(CPPAST_ENABLE_PRECONDITION_CHECKS "whether or not to enable precondition checks" ON)
|
|
|
|
option(CPPAST_BUILD_TEST "whether or not to build the tests" ON)
|
|
option(CPPAST_BUILD_TOOL "whether or not to build the tool" ON)
|
|
option(BUILD_TESTING "build test" OFF) # The ctest variable for building tests
|
|
|
|
if(${CPPAST_BUILD_TEST} OR ${BUILD_TESTING} OR (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR))
|
|
set(build_test ON)
|
|
else()
|
|
set(build_test OFF)
|
|
endif()
|
|
|
|
if(${CPPAST_BUILD_TOOL} OR (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR))
|
|
set(build_tool ON)
|
|
else()
|
|
set(build_tool OFF)
|
|
endif()
|
|
|
|
include(external/external.cmake)
|
|
|
|
add_subdirectory(src)
|
|
|
|
if(${build_test})
|
|
add_subdirectory(test)
|
|
endif()
|
|
if(${build_tool})
|
|
add_subdirectory(tool)
|
|
endif()
|