[CMake] ext related CMake changes for Nintendo Switch

Only accounting for committed files
This commit is contained in:
M4xw 2023-06-27 17:19:29 +02:00
parent 5e565cff35
commit f5d2d0a5c4
2 changed files with 24 additions and 20 deletions

View File

@ -142,7 +142,9 @@ endif()
add_library(cpu_features ${CPU_FEATURES_HDRS} ${CPU_FEATURES_SRCS})
set_target_properties(cpu_features PROPERTIES PUBLIC_HEADER "${CPU_FEATURES_HDRS}")
setup_include_and_definitions(cpu_features)
if(NOT USE_LIBNX)
target_link_libraries(cpu_features PUBLIC ${CMAKE_DL_LIBS})
endif()
target_include_directories(cpu_features
PUBLIC $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/cpu_features>
)

View File

@ -1,4 +1,5 @@
find_package(GLEW)
if(NOT USE_LIBNX)
if((NOT APPLE OR USE_SYSTEM_FFMPEG) AND GLEW_FOUND)
add_library(system_glew INTERFACE)
add_library(Ext::GLEW ALIAS system_glew)
@ -19,3 +20,4 @@ else()
EXCLUDE_FROM_ALL ON
)
endif()
endif()