core: Add boxcat sources with target_sources
Same behavior, minus a script variable.
This commit is contained in:
parent
2190f1a2b7
commit
0ab7bfdfce
1 changed files with 7 additions and 7 deletions
|
@ -1,9 +1,3 @@
|
||||||
if (YUZU_ENABLE_BOXCAT)
|
|
||||||
set(BCAT_BOXCAT_ADDITIONAL_SOURCES hle/service/bcat/backend/boxcat.cpp hle/service/bcat/backend/boxcat.h)
|
|
||||||
else()
|
|
||||||
set(BCAT_BOXCAT_ADDITIONAL_SOURCES)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_library(core STATIC
|
add_library(core STATIC
|
||||||
arm/arm_interface.h
|
arm/arm_interface.h
|
||||||
arm/arm_interface.cpp
|
arm/arm_interface.cpp
|
||||||
|
@ -303,7 +297,6 @@ add_library(core STATIC
|
||||||
hle/service/audio/hwopus.h
|
hle/service/audio/hwopus.h
|
||||||
hle/service/bcat/backend/backend.cpp
|
hle/service/bcat/backend/backend.cpp
|
||||||
hle/service/bcat/backend/backend.h
|
hle/service/bcat/backend/backend.h
|
||||||
${BCAT_BOXCAT_ADDITIONAL_SOURCES}
|
|
||||||
hle/service/bcat/bcat.cpp
|
hle/service/bcat/bcat.cpp
|
||||||
hle/service/bcat/bcat.h
|
hle/service/bcat/bcat.h
|
||||||
hle/service/bcat/module.cpp
|
hle/service/bcat/module.cpp
|
||||||
|
@ -608,6 +601,13 @@ add_library(core STATIC
|
||||||
tools/freezer.h
|
tools/freezer.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (YUZU_ENABLE_BOXCAT)
|
||||||
|
target_sources(core PRIVATE
|
||||||
|
hle/service/bcat/backend/boxcat.cpp
|
||||||
|
hle/service/bcat/backend/boxcat.h
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
target_compile_options(core PRIVATE
|
target_compile_options(core PRIVATE
|
||||||
# 'expression' : signed/unsigned mismatch
|
# 'expression' : signed/unsigned mismatch
|
||||||
|
|
Loading…
Reference in a new issue