first commit

This commit is contained in:
Carl Pearson
2020-03-24 08:18:43 -05:00
commit 9849273411
13 changed files with 18165 additions and 0 deletions

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
# 3.0: version
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
project(argparse LANGUAGES CXX VERSION 0.1.0.0)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD 11)
# "this command should be in the source directory root for CTest to find the test file"
enable_testing()
add_subdirectory(test)