| 1234567891011121314151617181920212223242526272829303132333435363738 |
- set(TARGET_NAME "rmlui_benchmarks")
- add_executable(${TARGET_NAME}
- DataExpression.cpp
- Element.cpp
- BackgroundBorder.cpp
- ElementDocument.cpp
- Table.cpp
- Selectors.cpp
- main.cpp
- DataBinding.cpp
- Flexbox.cpp
- FontEffect.cpp
- WidgetTextInput.cpp
- )
- set_common_target_options(${TARGET_NAME})
- target_link_libraries(${TARGET_NAME} PRIVATE
- rmlui_tests_common
- rmlui_core
- doctest::doctest
- nanobench::nanobench
- )
- if(NOT EMSCRIPTEN)
- doctest_discover_tests(${TARGET_NAME})
- endif()
- if(EMSCRIPTEN)
- # The benchmarks additionally use data from the benchmark sample.
- target_link_libraries(${TARGET_NAME} PRIVATE "--preload-file \"${PROJECT_SOURCE_DIR}/Samples/basic/benchmark/data/@/Samples/basic/benchmark/data/\"")
- endif()
- if(MSVC)
- # Set UTF-8 on MSVC to properly encode non-ascii characters.
- target_compile_options(${TARGET_NAME} PRIVATE /utf-8)
- endif()
|