mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-10 07:41:41 +00:00
Move nasm check inside unit tests
Allow building of fex without nasm if unit tests are disabled
This commit is contained in:
parent
c3ab5bca5e
commit
16e7ba6fa8
@ -1,7 +1,3 @@
|
||||
enable_language(ASM_NASM)
|
||||
if(NOT CMAKE_ASM_NASM_COMPILER_LOADED)
|
||||
error("Failed to find NASM compatible assembler!")
|
||||
endif()
|
||||
|
||||
set(SYSCALL_SRCS
|
||||
LinuxSyscalls/FileManagement.cpp
|
||||
|
@ -1,3 +1,7 @@
|
||||
enable_language(ASM_NASM)
|
||||
if(NOT CMAKE_ASM_NASM_COMPILER_LOADED)
|
||||
error("Failed to find NASM compatible assembler!")
|
||||
endif()
|
||||
|
||||
# Careful. Globbing can't see changes to the contents of files
|
||||
# Need to do a fresh clean to see changes
|
||||
|
@ -1,3 +1,7 @@
|
||||
enable_language(ASM_NASM)
|
||||
if(NOT CMAKE_ASM_NASM_COMPILER_LOADED)
|
||||
error("Failed to find NASM compatible assembler!")
|
||||
endif()
|
||||
|
||||
# Careful. Globbing can't see changes to the contents of files
|
||||
# Need to do a fresh clean to see changes
|
||||
|
Loading…
Reference in New Issue
Block a user