TCLAP/CMakeLists.txt
Daniel Aarno cce3831403 Enable CMake to build (not test) in 1.2.
This is useful so we can at least check that it compiles on
Windows. We don't bother fixing the tests or testing infra (as has
been done in 1.4 branch) as we expect most development to happen
there. The CMake files will not be included in the distrubution and
are used for development/testing only.
2020-03-21 10:50:49 +00:00

9 lines
160 B
CMake

cmake_minimum_required(VERSION 3.7)
project(TCLAP VERSION 1.2.2)
set(CMAKE_CXX_STANDARD 98)
set(CMAKE_CXX_STANDARD_REQUIRED True)
add_subdirectory(examples)