Move test dir to root
This commit is contained in:
@@ -56,3 +56,10 @@ include(cmake/imgui.cmake)
|
|||||||
|
|
||||||
# Project Files
|
# Project Files
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
if (YAZE_BUILD_TESTS)
|
||||||
|
include(cmake/gtest.cmake)
|
||||||
|
add_subdirectory(test)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|||||||
@@ -53,9 +53,6 @@ endif()
|
|||||||
if (YAZE_BUILD_PYTHON)
|
if (YAZE_BUILD_PYTHON)
|
||||||
include(cli/python/yaze_py.cmake)
|
include(cli/python/yaze_py.cmake)
|
||||||
endif()
|
endif()
|
||||||
if (YAZE_BUILD_TESTS)
|
|
||||||
include(test/CMakeLists.txt)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(MACOS)
|
if(MACOS)
|
||||||
set(MACOSX_BUNDLE_ICON_FILE ${CMAKE_SOURCE_DIR}/win32/yaze.ico)
|
set(MACOSX_BUNDLE_ICON_FILE ${CMAKE_SOURCE_DIR}/win32/yaze.ico)
|
||||||
|
|||||||
@@ -1,26 +1,31 @@
|
|||||||
include(../cmake/gtest.cmake)
|
|
||||||
|
|
||||||
add_executable(
|
set(YAZE_SRC_FILES "")
|
||||||
yaze_test
|
foreach (file
|
||||||
test/yaze_test.cc
|
|
||||||
test/rom_test.cc
|
|
||||||
test/gfx/compression_test.cc
|
|
||||||
test/gfx/snes_palette_test.cc
|
|
||||||
test/integration/test_editor.cc
|
|
||||||
test/zelda3/overworld_test.cc
|
|
||||||
test/zelda3/sprite_builder_test.cc
|
|
||||||
app/rom.cc
|
app/rom.cc
|
||||||
app/core/common.cc
|
app/core/common.cc
|
||||||
${ASAR_STATIC_SRC}
|
|
||||||
${YAZE_APP_CORE_SRC}
|
${YAZE_APP_CORE_SRC}
|
||||||
${YAZE_APP_EMU_SRC}
|
${YAZE_APP_EMU_SRC}
|
||||||
${YAZE_APP_GFX_SRC}
|
${YAZE_APP_GFX_SRC}
|
||||||
${YAZE_APP_ZELDA3_SRC}
|
${YAZE_APP_ZELDA3_SRC}
|
||||||
${YAZE_APP_EDITOR_SRC}
|
${YAZE_APP_EDITOR_SRC}
|
||||||
${YAZE_UTIL_SRC}
|
${YAZE_UTIL_SRC}
|
||||||
${YAZE_GUI_SRC}
|
${YAZE_GUI_SRC})
|
||||||
|
list(APPEND YAZE_SRC_FILES ${CMAKE_SOURCE_DIR}/src/${file})
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
add_executable(
|
||||||
|
yaze_test
|
||||||
|
yaze_test.cc
|
||||||
|
rom_test.cc
|
||||||
|
gfx/compression_test.cc
|
||||||
|
gfx/snes_palette_test.cc
|
||||||
|
integration/test_editor.cc
|
||||||
|
zelda3/overworld_test.cc
|
||||||
|
zelda3/sprite_builder_test.cc
|
||||||
|
${ASAR_STATIC_SRC}
|
||||||
${IMGUI_SRC}
|
${IMGUI_SRC}
|
||||||
${IMGUI_TEST_ENGINE_SOURCES}
|
${IMGUI_TEST_ENGINE_SOURCES}
|
||||||
|
${YAZE_SRC_FILES}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(
|
target_include_directories(
|
||||||
@@ -28,7 +33,7 @@ target_include_directories(
|
|||||||
app/
|
app/
|
||||||
lib/
|
lib/
|
||||||
${CMAKE_SOURCE_DIR}/incl/
|
${CMAKE_SOURCE_DIR}/incl/
|
||||||
${CMAKE_SOURCE_DIR}/src/
|
${CMAKE_SOURCE_DIR}
|
||||||
${CMAKE_SOURCE_DIR}/src/lib/imgui_test_engine
|
${CMAKE_SOURCE_DIR}/src/lib/imgui_test_engine
|
||||||
${ASAR_INCLUDE_DIR}
|
${ASAR_INCLUDE_DIR}
|
||||||
${SDL2_INCLUDE_DIR}
|
${SDL2_INCLUDE_DIR}
|
||||||
Reference in New Issue
Block a user