mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
21 lines
904 B
CMake
21 lines
904 B
CMake
project(rlottie_tests CXX)
|
|
find_package(GTest REQUIRED)
|
|
|
|
add_definitions(-DDEMO_DIR="${CMAKE_SOURCE_DIR}/example/resource/")
|
|
link_libraries(GTest::GTest GTest::Main)
|
|
|
|
add_executable(vectorTestSuite testsuite.cpp test_vrect.cpp test_vpath.cpp
|
|
${CMAKE_SOURCE_DIR}/src/vector/vbezier.cpp
|
|
${CMAKE_SOURCE_DIR}/src/vector/vdebug.cpp
|
|
${CMAKE_SOURCE_DIR}/src/vector/vmatrix.cpp
|
|
${CMAKE_SOURCE_DIR}/src/vector/vpath.cpp)
|
|
target_include_directories(vectorTestSuite PRIVATE ${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/src/vector ${CMAKE_SOURCE_DIR}/src/vector/pixman)
|
|
gtest_add_tests(vectorTestSuite "" AUTO)
|
|
|
|
add_executable(animationTestSuite testsuite.cpp
|
|
test_lottieanimation.cpp test_lottieanimation_capi.cpp)
|
|
target_include_directories(animationTestSuite PRIVATE ${CMAKE_SOURCE_DIR}/inc)
|
|
target_link_libraries(animationTestSuite PRIVATE rlottie)
|
|
gtest_add_tests(animationTestSuite "" AUTO)
|