mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #13032 from parona-source/missing-cmake-include
Add missing cmake includes and remove unused cmake includes
This commit is contained in:
1
Externals/bzip2/CMakeLists.txt
vendored
1
Externals/bzip2/CMakeLists.txt
vendored
@ -3,7 +3,6 @@ project(bzip2 C)
|
|||||||
include(CheckTypeSize)
|
include(CheckTypeSize)
|
||||||
include(CheckFunctionExists)
|
include(CheckFunctionExists)
|
||||||
include(CheckIncludeFile)
|
include(CheckIncludeFile)
|
||||||
include(CheckCSourceCompiles)
|
|
||||||
|
|
||||||
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
||||||
check_include_file(stdint.h HAVE_STDINT_H)
|
check_include_file(stdint.h HAVE_STDINT_H)
|
||||||
|
1
Externals/liblzma/CMakeLists.txt
vendored
1
Externals/liblzma/CMakeLists.txt
vendored
@ -3,7 +3,6 @@ project(lzma C)
|
|||||||
include(CheckTypeSize)
|
include(CheckTypeSize)
|
||||||
include(CheckFunctionExists)
|
include(CheckFunctionExists)
|
||||||
include(CheckIncludeFile)
|
include(CheckIncludeFile)
|
||||||
include(CheckCSourceCompiles)
|
|
||||||
|
|
||||||
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
||||||
check_include_file(stdint.h HAVE_STDINT_H)
|
check_include_file(stdint.h HAVE_STDINT_H)
|
||||||
|
3
Externals/minizip-ng/CMakeLists.txt
vendored
3
Externals/minizip-ng/CMakeLists.txt
vendored
@ -1,5 +1,8 @@
|
|||||||
project(minizip C)
|
project(minizip C)
|
||||||
|
|
||||||
|
include(CheckFunctionExists)
|
||||||
|
include(CheckIncludeFile)
|
||||||
|
|
||||||
add_library(minizip STATIC
|
add_library(minizip STATIC
|
||||||
minizip-ng/mz.h
|
minizip-ng/mz.h
|
||||||
# minizip-ng/compat/crypt.h
|
# minizip-ng/compat/crypt.h
|
||||||
|
1
Externals/zstd/CMakeLists.txt
vendored
1
Externals/zstd/CMakeLists.txt
vendored
@ -7,7 +7,6 @@ endif()
|
|||||||
include(CheckTypeSize)
|
include(CheckTypeSize)
|
||||||
include(CheckFunctionExists)
|
include(CheckFunctionExists)
|
||||||
include(CheckIncludeFile)
|
include(CheckIncludeFile)
|
||||||
include(CheckCSourceCompiles)
|
|
||||||
|
|
||||||
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
|
||||||
check_include_file(stdint.h HAVE_STDINT_H)
|
check_include_file(stdint.h HAVE_STDINT_H)
|
||||||
|
Reference in New Issue
Block a user