Merge in unicode fixes

This commit is contained in:
Mario Badr 2016-11-29 11:40:47 -05:00
parent a09936b05f
commit 7851fc4b49
2 changed files with 2 additions and 6 deletions

View File

@ -20,9 +20,7 @@
if(CXXOPTS_BUILD_EXAMPLES)
add_executable(example example.cpp)
target_link_libraries(example cxxopts)
target_link_libraries(example ${CXXOPTS_LINKER_LIBRARIES})
target_link_libraries(example cxxopts ${CXXOPTS_LINKER_LIBRARIES})
if (MSVC)
target_compile_options(example PUBLIC /W2)

View File

@ -1,8 +1,6 @@
if (CXXOPTS_BUILD_TESTS)
add_executable(options_test options.cpp)
target_link_libraries(options_test cxxopts)
target_link_libraries(options_test ${CXXOPTS_LINKER_LIBRARIES})
target_link_libraries(options_test cxxopts ${CXXOPTS_LINKER_LIBRARIES})
if (MSVC)
target_compile_options(options_test PUBLIC /W2)