mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-27 09:11:50 +00:00
unittests: Fixes a missing dependency on ASM tests
The output asm folder needs to be created before the config file can be generated. Otherwise the python script will fail.
This commit is contained in:
parent
98210fdf47
commit
d03856f0b7
@ -39,6 +39,7 @@ foreach(ASM_SRC ${ASM_SOURCES})
|
||||
|
||||
add_custom_command(OUTPUT ${OUTPUT_CONFIG_NAME}
|
||||
DEPENDS "${ASM_SRC}"
|
||||
DEPENDS "${OUTPUT_ASM_FOLDER}"
|
||||
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py"
|
||||
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_config_parse.py"
|
||||
COMMAND "python3" ARGS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py" "${ASM_SRC}" "${OUTPUT_CONFIG_NAME}")
|
||||
|
@ -39,6 +39,7 @@ foreach(ASM_SRC ${ASM_SOURCES})
|
||||
|
||||
add_custom_command(OUTPUT ${OUTPUT_CONFIG_NAME}
|
||||
DEPENDS "${ASM_SRC}"
|
||||
DEPENDS "${OUTPUT_ASM_FOLDER}"
|
||||
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py"
|
||||
DEPENDS "${CMAKE_SOURCE_DIR}/Scripts/json_config_parse.py"
|
||||
COMMAND "python3" ARGS "${CMAKE_SOURCE_DIR}/Scripts/json_asm_config_parse.py" "${ASM_SRC}" "${OUTPUT_CONFIG_NAME}")
|
||||
|
Loading…
x
Reference in New Issue
Block a user