Add the cpp-optparse project to Externals.

From https://github.com/weisslj/cpp-argparse
This commit is contained in:
Ryan Houdek
2016-01-17 05:09:58 -06:00
committed by Léo Lam
parent d8479869dc
commit 77c7fa836f
9 changed files with 969 additions and 3 deletions

6
Externals/cpp-optparse/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,6 @@
check_and_add_flag(CXX11 -std=c++11)
set(SRCS OptionParser.cpp OptionParser.h)
add_library(cpp-optparse STATIC ${SRCS})
target_include_directories(cpp-optparse PUBLIC .)