acs/CMakeLists.txt: remove ACSVM_NOFLAGS, fix Apple Clang 14 compile

This should be more correct everywhere but it specifically
broke Apple Clang 14 compiling.
This commit is contained in:
James R 2023-03-31 05:27:56 -07:00
parent 78b4b6f5ec
commit 530c2c5348

View file

@ -13,7 +13,11 @@ target_sources(SRB2SDL2 PRIVATE
target_include_directories(SRB2SDL2 PRIVATE vm) # This sucks
set(ACSVM_NOFLAGS ON)
# This breaks Apple Clang 14 compile. It should be totally
# unecessary since even though vm/CMakeLists.txt sets
# CMAKE_CXX_FLAGS, it is in a lower scope.
#set(ACSVM_NOFLAGS ON)
set(ACSVM_SHARED OFF)
add_subdirectory(vm)