mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	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.
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			5 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.)
 |