mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-08-03 09:47:05 -04:00

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.
9 lines
160 B
CMake
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)
|