blob: f127a4067c7c183a9a2ced7195b16350c7acf36c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
add_library(physfs STATIC
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_7z.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_dir.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_grp.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_hog.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_iso9660.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_mvl.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_qpak.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_slb.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_unpacked.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_vdf.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_wad.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_archiver_zip.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_byteorder.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_casefolding.h"
"${CMAKE_CURRENT_LIST_DIR}/physfs_internal.h"
"${CMAKE_CURRENT_LIST_DIR}/physfs_lzmasdk.h"
"${CMAKE_CURRENT_LIST_DIR}/physfs_miniz.h"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_android.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_os2.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_posix.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_qnx.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_unix.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platform_windows.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs_platforms.h"
"${CMAKE_CURRENT_LIST_DIR}/physfs_unicode.c"
"${CMAKE_CURRENT_LIST_DIR}/physfs.c")
target_include_directories(physfs PUBLIC "${DEPS_INCLUDE_DIR}")
set_target_properties(physfs PROPERTIES FOLDER DEPS)
if(APPLE)
target_link_libraries(physfs PRIVATE "-framework IOkit -framework Foundation")
target_sources(physfs PRIVATE "${CMAKE_CURRENT_LIST_DIR}/physfs_platform_apple.m")
endif()
if(UNIX AND NOT WIN32 AND NOT APPLE)
find_library(PTHREAD_LIBRARY pthread)
if(PTHREAD_LIBRARY)
target_link_libraries(physfs PRIVATE ${PTHREAD_LIBRARY})
endif()
endif()
option(PHYSFS_ARCHIVE_ZIP "Enable ZIP support" TRUE)
if(NOT PHYSFS_ARCHIVE_ZIP)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_ZIP=0)
endif()
option(PHYSFS_ARCHIVE_7Z "Enable 7zip support" TRUE)
if(NOT PHYSFS_ARCHIVE_7Z)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_7Z=0)
endif()
option(PHYSFS_ARCHIVE_GRP "Enable Build Engine GRP support" TRUE)
if(NOT PHYSFS_ARCHIVE_GRP)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_GRP=0)
endif()
option(PHYSFS_ARCHIVE_WAD "Enable Doom WAD support" TRUE)
if(NOT PHYSFS_ARCHIVE_WAD)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_WAD=0)
endif()
option(PHYSFS_ARCHIVE_HOG "Enable Descent I/II HOG support" TRUE)
if(NOT PHYSFS_ARCHIVE_HOG)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_HOG=0)
endif()
option(PHYSFS_ARCHIVE_MVL "Enable Descent I/II MVL support" TRUE)
if(NOT PHYSFS_ARCHIVE_MVL)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_MVL=0)
endif()
option(PHYSFS_ARCHIVE_QPAK "Enable Quake I/II QPAK support" TRUE)
if(NOT PHYSFS_ARCHIVE_QPAK)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_QPAK=0)
endif()
option(PHYSFS_ARCHIVE_SLB "Enable I-War / Independence War SLB support" TRUE)
if(NOT PHYSFS_ARCHIVE_SLB)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_SLB=0)
endif()
option(PHYSFS_ARCHIVE_ISO9660 "Enable ISO9660 support" TRUE)
if(NOT PHYSFS_ARCHIVE_ISO9660)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_ISO9660=0)
endif()
option(PHYSFS_ARCHIVE_VDF "Enable Gothic I/II VDF archive support" TRUE)
if(NOT PHYSFS_ARCHIVE_VDF)
target_compile_definitions(physfs PUBLIC PHYSFS_SUPPORTS_VDF=0)
endif()
|