52 lines
1.3 KiB
CMake
52 lines
1.3 KiB
CMake
# GoogleTest ------------------------------------------------------------------------------------
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
googletest
|
|
URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
|
|
)
|
|
# For Windows: Prevent overriding the parent project's compiler/linker settings
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
FetchContent_MakeAvailable(googletest)
|
|
enable_testing()
|
|
|
|
find_package(PNG REQUIRED)
|
|
|
|
set(SNESHACKING_PATH "../src/Library/sneshacking/src")
|
|
|
|
add_executable(
|
|
yaze_test
|
|
yaze_test.cc
|
|
rom_test.cc
|
|
../src/Application/Data/rom.cc
|
|
../src/Application/Graphics/tile.cc
|
|
../src/Application/Graphics/tile.cc
|
|
../src/Application/Graphics/palette.cc
|
|
${SNESHACKING_PATH}/compressions/alttpcompression.c
|
|
${SNESHACKING_PATH}/compressions/stdnintendo.c
|
|
${SNESHACKING_PATH}/tile.c
|
|
${SNESHACKING_PATH}/tilepng.c
|
|
${SNESHACKING_PATH}/palette.c
|
|
${SNESHACKING_PATH}/rommapping.c
|
|
${SNESHACKING_PATH}/mapping_lorom.c
|
|
)
|
|
|
|
target_include_directories(
|
|
yaze_test PUBLIC
|
|
../src/Library/
|
|
../src/Application/
|
|
${SNESHACKING_PATH}
|
|
)
|
|
|
|
target_link_libraries(
|
|
yaze_test
|
|
${PNG_LIBRARIES}
|
|
${BOOST_LIBRARIES}
|
|
${SDL2_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
NintendoCompression
|
|
gtest_main
|
|
gtest
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(yaze_test) |