mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
8 lines
216 B
CMake
8 lines
216 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_msvc(cpp-optparse)
|
|
target_include_directories(cpp-optparse PUBLIC .)
|