Skip to content

Commit

Permalink
Oops, missed a spot
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 2, 2023
1 parent 7c994ae commit b2c5eea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ function(add_retroarch_test)
NAME "${RETRO_NAME}"
COMMAND ${Python3_EXECUTABLE}
"${CMAKE_CURRENT_SOURCE_DIR}/python/retroarch.py"
--libretro "$<TARGET_FILE:libretro>"
--libretro "$<TARGET_FILE:melondsds_libretro>"
--max-frames=${RETRO_MAX_FRAMES}
"${RETRO_CONTENT}"
)

list(APPEND REQUIRED_FILES "$<TARGET_FILE:libretro>")
list(APPEND REQUIRED_FILES "$<TARGET_FILE:melondsds_libretro>")
if (RETRO_CONTENT)
list(APPEND REQUIRED_FILES "${RETRO_CONTENT}")
endif()
Expand Down Expand Up @@ -148,13 +148,13 @@ function(add_emutest_test)
add_test(
NAME "${RETRO_NAME}"
COMMAND ${EMUTEST}
-L "$<TARGET_FILE:libretro>"
-L "$<TARGET_FILE:melondsds_libretro>"
-r "${RETRO_CONTENT}"
-t "${CMAKE_CURRENT_SOURCE_DIR}/lua/${RETRO_TEST_SCRIPT}"
)

list(APPEND REQUIRED_FILES "${CMAKE_CURRENT_SOURCE_DIR}/lua/preamble.lua")
list(APPEND REQUIRED_FILES "$<TARGET_FILE:libretro>")
list(APPEND REQUIRED_FILES "$<TARGET_FILE:melondsds_libretro>")
if (RETRO_CONTENT)
list(APPEND REQUIRED_FILES "${RETRO_CONTENT}")
endif()
Expand Down

0 comments on commit b2c5eea

Please sign in to comment.