Skip to content

Latest commit

 

History

History
421 lines (361 loc) · 13.7 KB

CMakeLists.txt

File metadata and controls

421 lines (361 loc) · 13.7 KB
 
Mar 10, 2007
Mar 10, 2007
1
2
# PhysicsFS; a portable, flexible file i/o abstraction.
#
Mar 11, 2007
Mar 11, 2007
3
# Please see the file LICENSE.txt in the source's root directory.
Mar 10, 2007
Mar 10, 2007
4
Oct 23, 2012
Oct 23, 2012
5
cmake_minimum_required(VERSION 2.8.4)
Mar 11, 2007
Mar 11, 2007
6
Oct 23, 2012
Oct 23, 2012
7
8
project(PhysicsFS)
set(PHYSFS_VERSION 2.1.0)
Mar 23, 2009
Mar 23, 2009
9
10
# Increment this if/when we break backwards compatibility.
Oct 23, 2012
Oct 23, 2012
11
set(PHYSFS_SOVERSION 1)
Mar 10, 2007
Mar 10, 2007
12
13
# I hate that they define "WIN32" ... we're about to move to Win64...I hope!
Oct 23, 2012
Oct 23, 2012
14
15
16
if(WIN32 AND NOT WINDOWS)
set(WINDOWS TRUE)
endif()
Mar 10, 2007
Mar 10, 2007
17
18
# Bleh, let's do it for "APPLE" too.
Oct 23, 2012
Oct 23, 2012
19
20
21
if(APPLE AND NOT MACOSX)
set(MACOSX TRUE)
endif()
Mar 10, 2007
Mar 10, 2007
22
Jul 16, 2011
Jul 16, 2011
23
# For now, Haiku and BeOS are the same, as far as the build system cares.
Oct 23, 2012
Oct 23, 2012
24
25
26
if(HAIKU AND NOT BEOS)
set(BEOS TRUE)
endif()
Jul 16, 2011
Jul 16, 2011
27
Oct 23, 2012
Oct 23, 2012
28
29
30
if(CMAKE_SYSTEM_NAME STREQUAL "SunOS")
set(SOLARIS TRUE)
endif()
Apr 13, 2009
Apr 13, 2009
31
Jul 10, 2017
Jul 10, 2017
32
33
34
35
36
# Don't treat MingW as Unix; use it as a strictly-Windows compiler.
if(MINGW)
set(UNIX FALSE)
endif()
Oct 23, 2012
Oct 23, 2012
37
38
39
include(CheckIncludeFile)
include(CheckLibraryExists)
include(CheckCSourceCompiles)
Mar 10, 2007
Mar 10, 2007
40
Oct 23, 2012
Oct 23, 2012
41
include_directories(./src)
Mar 10, 2007
Mar 10, 2007
42
Oct 23, 2012
Oct 23, 2012
43
if(MACOSX)
Mar 11, 2007
Mar 11, 2007
44
# Fallback to older OS X on PowerPC to support wider range of systems...
Oct 23, 2012
Oct 23, 2012
45
46
47
48
if(CMAKE_OSX_ARCHITECTURES MATCHES ppc)
add_definitions(-DMAC_OS_X_VERSION_MIN_REQUIRED=1020)
set(OTHER_LDFLAGS ${OTHER_LDFLAGS} " -mmacosx-version-min=10.2")
endif()
Mar 11, 2007
Mar 11, 2007
49
50
# Need these everywhere...
Oct 23, 2012
Oct 23, 2012
51
add_definitions(-fno-common)
Jul 11, 2017
Jul 11, 2017
52
set(OTHER_LDFLAGS ${OTHER_LDFLAGS} "-framework CoreFoundation -framework IOKit")
Oct 23, 2012
Oct 23, 2012
53
endif()
Mar 10, 2007
Mar 10, 2007
54
55
# Add some gcc-specific command lines.
Oct 23, 2012
Oct 23, 2012
56
if(CMAKE_COMPILER_IS_GNUCC)
Mar 10, 2007
Mar 10, 2007
57
# Always build with debug symbols...you can strip it later.
Oct 23, 2012
Oct 23, 2012
58
add_definitions(-g -pipe -Werror -fsigned-char)
Mar 12, 2007
Mar 12, 2007
59
60
# Stupid BeOS generates warnings in the system headers.
Oct 23, 2012
Oct 23, 2012
61
62
63
if(NOT BEOS)
add_definitions(-Wall)
endif()
Mar 10, 2007
Mar 10, 2007
64
Oct 23, 2012
Oct 23, 2012
65
check_c_source_compiles("
Mar 10, 2007
Mar 10, 2007
66
67
68
69
70
71
72
#if ((defined(__GNUC__)) && (__GNUC__ >= 4))
int main(int argc, char **argv) { int is_gcc4 = 1; return 0; }
#else
#error This is not gcc4.
#endif
" PHYSFS_IS_GCC4)
Oct 23, 2012
Oct 23, 2012
73
if(PHYSFS_IS_GCC4)
Jul 12, 2009
Jul 12, 2009
74
# Not supported on several operating systems at this time.
Oct 23, 2012
Oct 23, 2012
75
76
77
78
if(NOT SOLARIS AND NOT WINDOWS)
add_definitions(-fvisibility=hidden)
endif()
endif()
Feb 3, 2010
Feb 3, 2010
79
80
# Don't use -rpath.
Oct 23, 2012
Oct 23, 2012
81
82
set(CMAKE_SKIP_RPATH ON CACHE BOOL "Skip RPATH" FORCE)
endif()
Mar 10, 2007
Mar 10, 2007
83
Oct 23, 2012
Oct 23, 2012
84
85
86
87
if(CMAKE_C_COMPILER_ID STREQUAL "SunPro")
add_definitions(-erroff=E_EMPTY_TRANSLATION_UNIT)
add_definitions(-xldscope=hidden)
endif()
Apr 13, 2009
Apr 13, 2009
88
Oct 23, 2012
Oct 23, 2012
89
if(MSVC)
Mar 19, 2007
Mar 19, 2007
90
91
# VS.NET 8.0 got really really anal about strcpy, etc, which even if we
# cleaned up our code, zlib, etc still use...so disable the warning.
Oct 23, 2012
Oct 23, 2012
92
93
add_definitions(-D_CRT_SECURE_NO_WARNINGS=1)
endif()
Mar 10, 2007
Mar 10, 2007
94
95
96
# Basic chunks of source code ...
Oct 23, 2012
Oct 23, 2012
97
set(LZMA_SRCS
Mar 27, 2009
Mar 27, 2009
98
99
100
101
102
103
104
105
106
107
108
src/lzma/C/7zCrc.c
src/lzma/C/Archive/7z/7zBuffer.c
src/lzma/C/Archive/7z/7zDecode.c
src/lzma/C/Archive/7z/7zExtract.c
src/lzma/C/Archive/7z/7zHeader.c
src/lzma/C/Archive/7z/7zIn.c
src/lzma/C/Archive/7z/7zItem.c
src/lzma/C/Archive/7z/7zMethodID.c
src/lzma/C/Compress/Branch/BranchX86.c
src/lzma/C/Compress/Branch/BranchX86_2.c
src/lzma/C/Compress/Lzma/LzmaDecode.c
Mar 10, 2007
Mar 10, 2007
109
110
)
Oct 23, 2012
Oct 23, 2012
111
if(BEOS)
Mar 11, 2007
Mar 11, 2007
112
113
# We add this explicitly, since we don't want CMake to think this
# is a C++ project unless we're on BeOS.
Oct 23, 2012
Oct 23, 2012
114
115
116
117
118
set(PHYSFS_BEOS_SRCS src/platform_beos.cpp)
find_library(BE_LIBRARY be)
find_library(ROOT_LIBRARY root)
set(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} ${BE_LIBRARY} ${ROOT_LIBRARY})
endif()
Mar 11, 2007
Mar 11, 2007
119
120
121
122
123
# Almost everything is "compiled" here, but things that don't apply to the
# build are #ifdef'd out. This is to make it easy to embed PhysicsFS into
# another project or bring up a new build system: just compile all the source
# code and #define the things you want.
Oct 23, 2012
Oct 23, 2012
124
set(PHYSFS_SRCS
Mar 27, 2009
Mar 27, 2009
125
126
127
128
129
130
131
132
src/physfs.c
src/physfs_byteorder.c
src/physfs_unicode.c
src/platform_posix.c
src/platform_unix.c
src/platform_macosx.c
src/platform_windows.c
src/archiver_dir.c
Sep 6, 2010
Sep 6, 2010
133
src/archiver_unpacked.c
Mar 27, 2009
Mar 27, 2009
134
135
136
137
138
139
140
src/archiver_grp.c
src/archiver_hog.c
src/archiver_lzma.c
src/archiver_mvl.c
src/archiver_qpak.c
src/archiver_wad.c
src/archiver_zip.c
Nov 12, 2012
Nov 12, 2012
141
src/archiver_slb.c
Mar 17, 2010
Mar 17, 2010
142
src/archiver_iso9660.c
Jun 20, 2017
Jun 20, 2017
143
src/archiver_vdf.c
Mar 11, 2007
Mar 11, 2007
144
${PHYSFS_BEOS_SRCS}
Mar 10, 2007
Mar 10, 2007
145
146
147
148
149
)
# platform layers ...
Oct 23, 2012
Oct 23, 2012
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
if(UNIX)
if(BEOS)
set(PHYSFS_HAVE_CDROM_SUPPORT TRUE)
set(PHYSFS_HAVE_THREAD_SUPPORT TRUE)
set(HAVE_PTHREAD_H TRUE)
else()
check_include_file(sys/ucred.h HAVE_UCRED_H)
if(HAVE_UCRED_H)
add_definitions(-DPHYSFS_HAVE_SYS_UCRED_H=1)
set(PHYSFS_HAVE_CDROM_SUPPORT TRUE)
endif()
check_include_file(mntent.h HAVE_MNTENT_H)
if(HAVE_MNTENT_H)
add_definitions(-DPHYSFS_HAVE_MNTENT_H=1)
set(PHYSFS_HAVE_CDROM_SUPPORT TRUE)
endif()
Mar 10, 2007
Mar 10, 2007
167
Apr 13, 2009
Apr 13, 2009
168
169
# !!! FIXME: Solaris fails this, because mnttab.h implicitly
# !!! FIXME: depends on other system headers. :(
Oct 23, 2012
Oct 23, 2012
170
171
#check_include_file(sys/mnttab.h HAVE_SYS_MNTTAB_H)
check_c_source_compiles("
Apr 13, 2009
Apr 13, 2009
172
173
174
175
176
#include <stdio.h>
#include <sys/mnttab.h>
int main(int argc, char **argv) { return 0; }
" HAVE_SYS_MNTTAB_H)
Oct 23, 2012
Oct 23, 2012
177
178
179
180
181
182
183
184
if(HAVE_SYS_MNTTAB_H)
add_definitions(-DPHYSFS_HAVE_SYS_MNTTAB_H=1)
set(PHYSFS_HAVE_CDROM_SUPPORT TRUE)
endif()
check_include_file(pthread.h HAVE_PTHREAD_H)
if(HAVE_PTHREAD_H)
set(PHYSFS_HAVE_THREAD_SUPPORT TRUE)
Nov 26, 2012
Nov 26, 2012
185
186
187
188
find_library(PTHREAD_LIBRARY pthread)
if(PTHREAD_LIBRARY)
set(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} ${PTHREAD_LIBRARY})
endif()
Nov 26, 2012
Nov 26, 2012
189
endif()
Oct 23, 2012
Oct 23, 2012
190
191
192
endif()
endif()
Jul 6, 2017
Jul 6, 2017
193
if(WINDOWS OR OS2)
Oct 23, 2012
Oct 23, 2012
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
set(PHYSFS_HAVE_CDROM_SUPPORT TRUE)
set(PHYSFS_HAVE_THREAD_SUPPORT TRUE)
endif()
if(NOT PHYSFS_HAVE_CDROM_SUPPORT)
add_definitions(-DPHYSFS_NO_CDROM_SUPPORT=1)
message(WARNING " ***")
message(WARNING " *** There is no CD-ROM support in this build!")
message(WARNING " *** PhysicsFS will just pretend there are no discs.")
message(WARNING " *** This may be fine, depending on how PhysicsFS is used,")
message(WARNING " *** but is this what you REALLY wanted?")
message(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)")
message(WARNING " ***")
endif()
if(PHYSFS_HAVE_THREAD_SUPPORT)
add_definitions(-D_REENTRANT -D_THREAD_SAFE)
else()
add_definitions(-DPHYSFS_NO_THREAD_SUPPORT=1)
message(WARNING " ***")
message(WARNING " *** There is no thread support in this build!")
message(WARNING " *** PhysicsFS will NOT be reentrant!")
message(WARNING " *** This may be fine, depending on how PhysicsFS is used,")
message(WARNING " *** but is this what you REALLY wanted?")
message(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)")
message(WARNING " ***")
endif()
Mar 10, 2007
Mar 10, 2007
221
Mar 11, 2007
Mar 11, 2007
222
Mar 10, 2007
Mar 10, 2007
223
# Archivers ...
Jul 11, 2017
Jul 11, 2017
224
225
# These are (mostly) on by default now, so these options are only useful for
# disabling them.
Mar 10, 2007
Mar 10, 2007
226
Oct 23, 2012
Oct 23, 2012
227
option(PHYSFS_ARCHIVE_ZIP "Enable ZIP support" TRUE)
Jul 11, 2017
Jul 11, 2017
228
229
if(NOT PHYSFS_ARCHIVE_ZIP)
add_definitions(-DPHYSFS_SUPPORTS_ZIP=0)
Oct 23, 2012
Oct 23, 2012
230
endif()
Mar 10, 2007
Mar 10, 2007
231
Oct 23, 2012
Oct 23, 2012
232
option(PHYSFS_ARCHIVE_7Z "Enable 7zip support" TRUE)
Jul 11, 2017
Jul 11, 2017
233
234
if(NOT PHYSFS_ARCHIVE_7Z)
add_definitions(-DPHYSFS_SUPPORTS_7Z=0)
Mar 10, 2007
Mar 10, 2007
235
# !!! FIXME: rename to 7z.c?
Oct 23, 2012
Oct 23, 2012
236
237
238
239
set(PHYSFS_SRCS ${PHYSFS_SRCS} ${LZMA_SRCS})
endif()
option(PHYSFS_ARCHIVE_GRP "Enable Build Engine GRP support" TRUE)
Jul 11, 2017
Jul 11, 2017
240
241
if(NOT PHYSFS_ARCHIVE_GRP)
add_definitions(-DPHYSFS_SUPPORTS_GRP=0)
Oct 23, 2012
Oct 23, 2012
242
243
244
endif()
option(PHYSFS_ARCHIVE_WAD "Enable Doom WAD support" TRUE)
Jul 11, 2017
Jul 11, 2017
245
246
if(NOT PHYSFS_ARCHIVE_WAD)
add_definitions(-DPHYSFS_SUPPORTS_WAD=0)
Oct 23, 2012
Oct 23, 2012
247
248
249
endif()
option(PHYSFS_ARCHIVE_HOG "Enable Descent I/II HOG support" TRUE)
Jul 11, 2017
Jul 11, 2017
250
251
if(NOT PHYSFS_ARCHIVE_HOG)
add_definitions(-DPHYSFS_SUPPORTS_HOG=0)
Oct 23, 2012
Oct 23, 2012
252
253
254
endif()
option(PHYSFS_ARCHIVE_MVL "Enable Descent I/II MVL support" TRUE)
Jul 11, 2017
Jul 11, 2017
255
256
if(NOT PHYSFS_ARCHIVE_MVL)
add_definitions(-DPHYSFS_SUPPORTS_MVL=0)
Oct 23, 2012
Oct 23, 2012
257
258
259
endif()
option(PHYSFS_ARCHIVE_QPAK "Enable Quake I/II QPAK support" TRUE)
Jul 11, 2017
Jul 11, 2017
260
261
if(NOT PHYSFS_ARCHIVE_QPAK)
add_definitions(-DPHYSFS_SUPPORTS_QPAK=0)
Oct 23, 2012
Oct 23, 2012
262
263
endif()
Nov 12, 2012
Nov 12, 2012
264
option(PHYSFS_ARCHIVE_SLB "Enable I-War / Independence War SLB support" TRUE)
Jul 11, 2017
Jul 11, 2017
265
266
if(NOT PHYSFS_ARCHIVE_SLB)
add_definitions(-DPHYSFS_SUPPORTS_SLB=0)
Nov 12, 2012
Nov 12, 2012
267
268
endif()
Oct 23, 2012
Oct 23, 2012
269
option(PHYSFS_ARCHIVE_ISO9660 "Enable ISO9660 support" TRUE)
Jul 11, 2017
Jul 11, 2017
270
271
if(NOT PHYSFS_ARCHIVE_ISO9660)
add_definitions(-DPHYSFS_SUPPORTS_ISO9660=0)
Oct 23, 2012
Oct 23, 2012
272
273
endif()
Jun 20, 2017
Jun 20, 2017
274
option(PHYSFS_ARCHIVE_VDF "Enable Gothic I/II VDF archive support" TRUE)
Jul 11, 2017
Jul 11, 2017
275
276
if(NOT PHYSFS_ARCHIVE_VDF)
add_definitions(-DPHYSFS_SUPPORTS_VDF=0)
Jun 20, 2017
Jun 20, 2017
277
278
endif()
Oct 23, 2012
Oct 23, 2012
279
280
281
282
option(PHYSFS_BUILD_STATIC "Build static library" TRUE)
if(PHYSFS_BUILD_STATIC)
add_library(physfs-static STATIC ${PHYSFS_SRCS})
Jul 11, 2017
Jul 11, 2017
283
284
285
286
287
288
289
# Don't rename this on Windows, since DLLs will also produce an import
# library named "physfs.lib" which would conflict; Unix tend to like the
# same library name with a different extension for static libs, but
# Windows can just have a separate name.
if(NOT WINDOWS)
set_target_properties(physfs-static PROPERTIES OUTPUT_NAME "physfs")
endif()
Oct 23, 2012
Oct 23, 2012
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
set(PHYSFS_LIB_TARGET physfs-static)
set(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs-static")
endif()
option(PHYSFS_BUILD_SHARED "Build shared library" TRUE)
if(PHYSFS_BUILD_SHARED)
add_library(physfs SHARED ${PHYSFS_SRCS})
set_target_properties(physfs PROPERTIES VERSION ${PHYSFS_VERSION})
set_target_properties(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION})
target_link_libraries(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS})
set(PHYSFS_LIB_TARGET physfs)
set(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs")
endif()
if(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC)
message(FATAL "Both shared and static libraries are disabled!")
endif()
Mar 11, 2007
Mar 11, 2007
307
308
# CMake FAQ says I need this...
Jul 11, 2017
Jul 11, 2017
309
if(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC AND NOT WINDOWS)
Oct 23, 2012
Oct 23, 2012
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
set_target_properties(physfs PROPERTIES CLEAN_DIRECT_OUTPUT 1)
set_target_properties(physfs-static PROPERTIES CLEAN_DIRECT_OUTPUT 1)
endif()
option(PHYSFS_BUILD_TEST "Build stdio test program." TRUE)
mark_as_advanced(PHYSFS_BUILD_TEST)
if(PHYSFS_BUILD_TEST)
find_path(READLINE_H readline/readline.h)
find_path(HISTORY_H readline/history.h)
if(READLINE_H AND HISTORY_H)
find_library(CURSES_LIBRARY NAMES curses ncurses)
set(CMAKE_REQUIRED_LIBRARIES ${CURSES_LIBRARY})
find_library(READLINE_LIBRARY readline)
if(READLINE_LIBRARY)
set(HAVE_SYSTEM_READLINE TRUE)
set(TEST_PHYSFS_LIBS ${TEST_PHYSFS_LIBS} ${READLINE_LIBRARY} ${CURSES_LIBRARY})
include_directories(${READLINE_H} ${HISTORY_H})
add_definitions(-DPHYSFS_HAVE_READLINE=1)
endif()
endif()
add_executable(test_physfs test/test_physfs.c)
target_link_libraries(test_physfs ${PHYSFS_LIB_TARGET} ${TEST_PHYSFS_LIBS} ${OTHER_LDFLAGS})
set(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";test_physfs")
endif()
Mar 10, 2007
Mar 10, 2007
334
Oct 23, 2012
Oct 23, 2012
335
install(TARGETS ${PHYSFS_INSTALL_TARGETS}
Mar 11, 2007
Mar 11, 2007
336
RUNTIME DESTINATION bin
Feb 17, 2011
Feb 17, 2011
337
338
LIBRARY DESTINATION lib${LIB_SUFFIX}
ARCHIVE DESTINATION lib${LIB_SUFFIX})
Oct 23, 2012
Oct 23, 2012
339
install(FILES src/physfs.h DESTINATION include)
Mar 11, 2007
Mar 11, 2007
340
Oct 23, 2012
Oct 23, 2012
341
342
343
344
find_package(Doxygen)
if(DOXYGEN_FOUND)
set(PHYSFS_OUTPUT_DOXYFILE "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile")
configure_file(
Feb 22, 2011
Feb 22, 2011
345
"${CMAKE_CURRENT_SOURCE_DIR}/docs/Doxyfile"
Feb 22, 2011
Feb 22, 2011
346
347
348
"${PHYSFS_OUTPUT_DOXYFILE}"
COPYONLY
)
Oct 23, 2012
Oct 23, 2012
349
350
351
352
file(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "\n\n# Below auto-generated by cmake...\n\n")
file(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "PROJECT_NUMBER = \"${PHYSFS_VERSION}\"\n")
file(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "OUTPUT_DIRECTORY = \"${CMAKE_CURRENT_BINARY_DIR}/docs\"\n")
file(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "\n# End auto-generated section.\n\n")
Feb 22, 2011
Feb 22, 2011
353
Oct 23, 2012
Oct 23, 2012
354
add_custom_target(
Feb 22, 2011
Feb 22, 2011
355
356
357
358
359
docs
${DOXYGEN_EXECUTABLE} "${PHYSFS_OUTPUT_DOXYFILE}"
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
COMMENT "Building documentation in 'docs' directory..."
)
Oct 23, 2012
Oct 23, 2012
360
361
362
else()
message(STATUS "Doxygen not found. You won't be able to build documentation.")
endif()
Mar 10, 2007
Mar 10, 2007
363
Oct 23, 2012
Oct 23, 2012
364
if(UNIX)
Oct 23, 2012
Oct 23, 2012
365
set(PHYSFS_TARBALL "${CMAKE_CURRENT_SOURCE_DIR}/../physfs-${PHYSFS_VERSION}.tar.bz2")
Oct 23, 2012
Oct 23, 2012
366
add_custom_target(
Feb 3, 2010
Feb 3, 2010
367
dist
Oct 23, 2012
Oct 23, 2012
368
hg archive -t tbz2 "${PHYSFS_TARBALL}"
Feb 3, 2010
Feb 3, 2010
369
370
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
COMMENT "Building source tarball '${PHYSFS_TARBALL}'..."
Feb 3, 2010
Feb 3, 2010
371
)
Oct 23, 2012
Oct 23, 2012
372
add_custom_target(
Feb 3, 2010
Feb 3, 2010
373
374
375
376
377
uninstall
"${CMAKE_CURRENT_SOURCE_DIR}/extras/uninstall.sh"
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
COMMENT "Uninstall the project..."
)
Oct 23, 2012
Oct 23, 2012
378
379
endif()
Nov 13, 2013
Nov 13, 2013
380
381
382
383
384
385
386
387
388
389
390
391
if(UNIX AND NOT APPLE)
configure_file(
"extras/physfs.pc.in"
"extras/physfs.pc"
@ONLY
)
install(
FILES "${CMAKE_CURRENT_BINARY_DIR}/extras/physfs.pc"
DESTINATION "lib/pkgconfig"
)
endif()
Oct 23, 2012
Oct 23, 2012
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
macro(message_bool_option _NAME _VALUE)
if(${_VALUE})
message(STATUS " ${_NAME}: enabled")
else()
message(STATUS " ${_NAME}: disabled")
endif()
endmacro()
message(STATUS "PhysicsFS will build with the following options:")
message_bool_option("ZIP support" PHYSFS_ARCHIVE_ZIP)
message_bool_option("7zip support" PHYSFS_ARCHIVE_7Z)
message_bool_option("GRP support" PHYSFS_ARCHIVE_GRP)
message_bool_option("WAD support" PHYSFS_ARCHIVE_WAD)
message_bool_option("HOG support" PHYSFS_ARCHIVE_HOG)
message_bool_option("MVL support" PHYSFS_ARCHIVE_MVL)
message_bool_option("QPAK support" PHYSFS_ARCHIVE_QPAK)
Nov 12, 2012
Nov 12, 2012
408
message_bool_option("SLB support" PHYSFS_ARCHIVE_SLB)
Jul 11, 2017
Jul 11, 2017
409
410
message_bool_option("VDF support" PHYSFS_ARCHIVE_VDF)
message_bool_option("ISO9660 support" PHYSFS_ARCHIVE_ISO9660)
Oct 23, 2012
Oct 23, 2012
411
412
413
414
415
416
417
418
message_bool_option("CD-ROM drive support" PHYSFS_HAVE_CDROM_SUPPORT)
message_bool_option("Thread safety" PHYSFS_HAVE_THREAD_SUPPORT)
message_bool_option("Build static library" PHYSFS_BUILD_STATIC)
message_bool_option("Build shared library" PHYSFS_BUILD_SHARED)
message_bool_option("Build stdio test program" PHYSFS_BUILD_TEST)
if(PHYSFS_BUILD_TEST)
message_bool_option(" Use readline in test program" HAVE_SYSTEM_READLINE)
endif()
Mar 10, 2007
Mar 10, 2007
419
420
# end of CMakeLists.txt ...