cppast/CMakeLists.txt
2017-04-02 18:38:28 +02:00

17 lines
447 B
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
option(CPPAST_BUILD_TEST "whether or not to build the tests" ON)
include(external/external.cmake)
add_subdirectory(src)
if(CPPAST_BUILD_TEST)
add_subdirectory(test)
endif()