blob: 1d255582f7bb1ebacd7d2bbbe9c7f55c8a7b5eb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
set(SRCS
cpp-optparse/OptionParser.cpp
cpp-optparse/OptionParser.h
)
add_library(cpp-optparse STATIC ${SRCS})
target_compile_features(cpp-optparse PUBLIC cxx_std_11)
target_compile_options(cpp-optparse PRIVATE -fexceptions)
dolphin_disable_warnings(cpp-optparse)
target_include_directories(cpp-optparse
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/cpp-optparse
)
|