757231cc6e
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.
37 lines
809 B
CMake
37 lines
809 B
CMake
cmake_minimum_required(VERSION 3.0.2)
|
|
enable_testing()
|
|
|
|
set (SHARED_SRCS
|
|
${CMAKE_SOURCE_DIR}/src/UUID.cpp
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.cpp
|
|
)
|
|
|
|
set (SHARED_HDRS
|
|
${CMAKE_SOURCE_DIR}/src/UUID.h
|
|
${CMAKE_SOURCE_DIR}/src/StringUtils.h
|
|
)
|
|
|
|
set (SRCS
|
|
UUIDTest.cpp
|
|
)
|
|
|
|
source_group("Shared" FILES ${SHARED_SRCS} ${SHARED_HDRS})
|
|
source_group("Sources" FILES ${SRCS})
|
|
|
|
add_executable(UUIDTest ${SRCS} ${SHARED_SRCS} ${SHARED_HDRS})
|
|
target_link_libraries(UUIDTest mbedcrypto fmt::fmt)
|
|
target_compile_definitions(UUIDTest PRIVATE TEST_GLOBALS=1)
|
|
target_include_directories(UUIDTest PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src/
|
|
${CMAKE_SOURCE_DIR}/lib/mbedtls/include
|
|
)
|
|
|
|
add_test(NAME UUID-test COMMAND UUIDTest)
|
|
|
|
|
|
# Put the projects into solution folders (MSVC):
|
|
set_target_properties(
|
|
UUIDTest
|
|
PROPERTIES FOLDER Tests
|
|
)
|