cmake corrections (#10782)
This commit is contained in:
Vendored
+5
@@ -48,6 +48,11 @@ if(WIN32)
|
|||||||
target_include_directories(3rdparty_7z INTERFACE
|
target_include_directories(3rdparty_7z INTERFACE
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
|
||||||
$<INSTALL_INTERFACE:/src>)
|
$<INSTALL_INTERFACE:/src>)
|
||||||
|
|
||||||
|
target_include_directories(3rdparty_7z INTERFACE 7z)
|
||||||
|
|
||||||
|
set_property(TARGET 3rdparty_7z PROPERTY FOLDER "3rdparty/")
|
||||||
|
|
||||||
else()
|
else()
|
||||||
add_library(3rdparty_7z INTERFACE)
|
add_library(3rdparty_7z INTERFACE)
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Vendored
+3
@@ -239,6 +239,9 @@ if(USE_FAUDIO)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set_property(TARGET ${FAUDIO_TARGET} PROPERTY FOLDER "3rdparty/")
|
||||||
|
|
||||||
|
|
||||||
# FFMPEG
|
# FFMPEG
|
||||||
add_library(3rdparty_ffmpeg INTERFACE)
|
add_library(3rdparty_ffmpeg INTERFACE)
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
@@ -14,4 +14,5 @@ target_link_libraries(asmjit PRIVATE ${ASMJIT_DEPS})
|
|||||||
# ASMJIT should have a option for disabling installing and this wouldnt
|
# ASMJIT should have a option for disabling installing and this wouldnt
|
||||||
# be required to avoid installing ASMJIT...
|
# be required to avoid installing ASMJIT...
|
||||||
|
|
||||||
|
set_property(TARGET asmjit PROPERTY FOLDER "3rdparty/")
|
||||||
add_library(3rdparty::asmjit ALIAS asmjit)
|
add_library(3rdparty::asmjit ALIAS asmjit)
|
||||||
|
|||||||
Vendored
+3
@@ -16,4 +16,7 @@ else()
|
|||||||
set(CURL_STATIC_CRT ON CACHE BOOL "Use static crt to build curl" FORCE)
|
set(CURL_STATIC_CRT ON CACHE BOOL "Use static crt to build curl" FORCE)
|
||||||
endif()
|
endif()
|
||||||
add_subdirectory(curl EXCLUDE_FROM_ALL)
|
add_subdirectory(curl EXCLUDE_FROM_ALL)
|
||||||
|
|
||||||
|
set_property(TARGET libcurl PROPERTY FOLDER "3rdparty/")
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
Reference in New Issue
Block a user