mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
8 lines
211 B
CMake
8 lines
211 B
CMake
check_and_add_flag(CXX11 -std=c++11)
|
|
|
|
set(SRCS OptionParser.cpp OptionParser.h)
|
|
|
|
add_library(cpp-optparse STATIC ${SRCS})
|
|
dolphin_disable_warnings(cpp-optparse)
|
|
target_include_directories(cpp-optparse PUBLIC .)
|