yyc12345
c91df3a74f
- add chars format argument for floating point overload of ParserHelper::TryParse. - add overload for ParserHelper::Parse to match with ParserHelper::TryParse. - fix the issue that we can not specify c++ standard in command line when configuring project. - update documentation for changes. - change following function's argument from const yycc_char8_t* to const yycc_u8string_view&. - StringHelper::Split, StringHelper::SplitView - StringHelper::Lower, StringHelper::Upper - StringHelper::Join - StringHelper::Replace - use iterator type, not std::vector<yycc_u8string> for specialized StringHelper::Join to have more wide usage.
37 lines
884 B
CMake
37 lines
884 B
CMake
# Create executable testbench
|
|
add_executable(YYCCTestbench "")
|
|
# Setup testbench sources
|
|
target_sources(YYCCTestbench
|
|
PRIVATE
|
|
main.cpp
|
|
)
|
|
# Add YYCC as its library
|
|
target_include_directories(YYCCTestbench
|
|
PRIVATE
|
|
YYCCommonplace
|
|
)
|
|
target_link_libraries(YYCCTestbench
|
|
PRIVATE
|
|
YYCCommonplace
|
|
)
|
|
# Setup C++ standard
|
|
target_compile_features(YYCCTestbench PUBLIC cxx_std_17)
|
|
set_target_properties(YYCCTestbench PROPERTIES CXX_EXTENSION OFF)
|
|
# Order Unicode charset for private using
|
|
target_compile_definitions(YYCCTestbench
|
|
PRIVATE
|
|
$<$<CXX_COMPILER_ID:MSVC>:UNICODE>
|
|
$<$<CXX_COMPILER_ID:MSVC>:_UNICODE>
|
|
)
|
|
# Order build as UTF-8 in MSVC
|
|
target_compile_options(YYCCTestbench
|
|
PRIVATE
|
|
$<$<CXX_COMPILER_ID:MSVC>:/utf-8>
|
|
)
|
|
|
|
# Install testbench only on Release mode
|
|
install(TARGETS YYCCTestbench
|
|
CONFIGURATIONS Release
|
|
RUNTIME DESTINATION ${YYCC_INSTALL_BIN_PATH}
|
|
)
|