d5dcba00b1
Fixes issue with incorrect characters in time strings on UI. Fix platform dependency Fix return value with incorrect strings. Just use strptime and strftime on all platforms. Emulate strptime on msvc... because they don't have it and their get_time is buggy.
6 lines
278 B
CMake
6 lines
278 B
CMake
add_executable(timeutils_tests timeutils_tests_main.cpp)
|
|
target_link_libraries(timeutils_tests test_common libslic3r ${Boost_LIBRARIES} ${TBB_LIBRARIES} ${Boost_LIBRARIES})
|
|
|
|
add_test(timeutils_tests timeutils_tests)
|
|
#gtest_discover_tests(timeutils_tests TEST_PREFIX timeutils.)
|