author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 09 Mar 2012 01:24:40 -0500 | |
changeset 1197 | 65f35dc8f84c |
parent 1196 | 54a1dfb1e6f7 |
child 1207 | 42e2aad5ab02 |
permissions | -rw-r--r-- |
798 | 1 |
# PhysicsFS; a portable, flexible file i/o abstraction. |
2 |
# Copyright (C) 2007 Ryan C. Gordon. |
|
3 |
# |
|
809
116b8fe30371
Renamed LICENSE to LICENSE.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
805
diff
changeset
|
4 |
# Please see the file LICENSE.txt in the source's root directory. |
798 | 5 |
|
804
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
6 |
CMAKE_MINIMUM_REQUIRED(VERSION 2.4) |
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
7 |
|
798 | 8 |
PROJECT(PhysicsFS) |
1152
702229ccdbb1
Bumping version in CMakeLists.txt (but this is not ready for a release!).
Ryan C. Gordon <icculus@icculus.org>
parents:
1151
diff
changeset
|
9 |
SET(PHYSFS_VERSION 2.1.0) |
950 | 10 |
|
11 |
# Increment this if/when we break backwards compatibility. |
|
952
bbe76b085d4d
Screw it, change this back.
Ryan C. Gordon <icculus@icculus.org>
parents:
950
diff
changeset
|
12 |
SET(PHYSFS_SOVERSION 1) |
798 | 13 |
|
14 |
# I hate that they define "WIN32" ... we're about to move to Win64...I hope! |
|
15 |
IF(WIN32 AND NOT WINDOWS) |
|
16 |
SET(WINDOWS TRUE) |
|
17 |
ENDIF(WIN32 AND NOT WINDOWS) |
|
18 |
||
19 |
# Bleh, let's do it for "APPLE" too. |
|
20 |
IF(APPLE AND NOT MACOSX) |
|
21 |
SET(MACOSX TRUE) |
|
22 |
ENDIF(APPLE AND NOT MACOSX) |
|
23 |
||
1171
e4ca84e1d289
Treat Haiku as BeOS in CMakeLists.txt ... this lets CD-ROM support build, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1159
diff
changeset
|
24 |
# For now, Haiku and BeOS are the same, as far as the build system cares. |
e4ca84e1d289
Treat Haiku as BeOS in CMakeLists.txt ... this lets CD-ROM support build, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1159
diff
changeset
|
25 |
IF(HAIKU AND NOT BEOS) |
e4ca84e1d289
Treat Haiku as BeOS in CMakeLists.txt ... this lets CD-ROM support build, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1159
diff
changeset
|
26 |
SET(BEOS TRUE) |
e4ca84e1d289
Treat Haiku as BeOS in CMakeLists.txt ... this lets CD-ROM support build, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1159
diff
changeset
|
27 |
ENDIF(HAIKU AND NOT BEOS) |
e4ca84e1d289
Treat Haiku as BeOS in CMakeLists.txt ... this lets CD-ROM support build, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1159
diff
changeset
|
28 |
|
985 | 29 |
IF(CMAKE_SYSTEM_NAME STREQUAL "SunOS") |
30 |
SET(SOLARIS TRUE) |
|
31 |
ENDIF(CMAKE_SYSTEM_NAME STREQUAL "SunOS") |
|
32 |
||
798 | 33 |
INCLUDE(CheckIncludeFile) |
34 |
INCLUDE(CheckLibraryExists) |
|
35 |
INCLUDE(CheckCSourceCompiles) |
|
36 |
||
980
4608f823787f
Fixed include directory in CMakeLists.txt.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
37 |
INCLUDE_DIRECTORIES(./src) |
798 | 38 |
|
39 |
IF(MACOSX) |
|
803 | 40 |
# Fallback to older OS X on PowerPC to support wider range of systems... |
798 | 41 |
IF(CMAKE_OSX_ARCHITECTURES MATCHES ppc) |
801
a6d25b52f2c7
Fixes to CMakeLists.txt for Intel Mac.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
42 |
ADD_DEFINITIONS(-DMAC_OS_X_VERSION_MIN_REQUIRED=1020) |
a6d25b52f2c7
Fixes to CMakeLists.txt for Intel Mac.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
diff
changeset
|
43 |
SET(OTHER_LDFLAGS ${OTHER_LDFLAGS} " -mmacosx-version-min=10.2") |
798 | 44 |
ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES ppc) |
803 | 45 |
|
46 |
# Need these everywhere... |
|
47 |
ADD_DEFINITIONS(-fno-common) |
|
1174
f1779b4948bd
Removed a space in CMakeLists.txt that can make the linker grumpy.
Ryan C. Gordon <icculus@icculus.org>
parents:
1171
diff
changeset
|
48 |
SET(OTHER_LDFLAGS ${OTHER_LDFLAGS} "-framework Carbon -framework IOKit") |
798 | 49 |
ENDIF(MACOSX) |
50 |
||
51 |
# Add some gcc-specific command lines. |
|
52 |
IF(CMAKE_COMPILER_IS_GNUCC) |
|
53 |
# Always build with debug symbols...you can strip it later. |
|
821
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
54 |
ADD_DEFINITIONS(-g -pipe -Werror -fsigned-char) |
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
55 |
|
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
56 |
# Stupid BeOS generates warnings in the system headers. |
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
57 |
IF(NOT BEOS) |
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
58 |
ADD_DEFINITIONS(-Wall) |
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
59 |
ENDIF(NOT BEOS) |
798 | 60 |
|
61 |
CHECK_C_SOURCE_COMPILES(" |
|
62 |
#if ((defined(__GNUC__)) && (__GNUC__ >= 4)) |
|
63 |
int main(int argc, char **argv) { int is_gcc4 = 1; return 0; } |
|
64 |
#else |
|
65 |
#error This is not gcc4. |
|
66 |
#endif |
|
67 |
" PHYSFS_IS_GCC4) |
|
68 |
||
69 |
IF(PHYSFS_IS_GCC4) |
|
1009
56a3873c63e4
Don't use -fvisibility=hidden on Windows, since MinGW doesn't support it. :(
Ryan C. Gordon <icculus@icculus.org>
parents:
1005
diff
changeset
|
70 |
# Not supported on several operating systems at this time. |
1197
65f35dc8f84c
Removed OS/2 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1196
diff
changeset
|
71 |
IF(NOT SOLARIS AND NOT WINDOWS) |
981 | 72 |
ADD_DEFINITIONS(-fvisibility=hidden) |
1197
65f35dc8f84c
Removed OS/2 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1196
diff
changeset
|
73 |
ENDIF(NOT SOLARIS AND NOT WINDOWS) |
798 | 74 |
ENDIF(PHYSFS_IS_GCC4) |
1040
5fc90d008821
Prevent bogus addition of -rpath to libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
1039
diff
changeset
|
75 |
|
5fc90d008821
Prevent bogus addition of -rpath to libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
1039
diff
changeset
|
76 |
# Don't use -rpath. |
5fc90d008821
Prevent bogus addition of -rpath to libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
1039
diff
changeset
|
77 |
SET(CMAKE_SKIP_RPATH ON CACHE BOOL "Skip RPATH" FORCE) |
798 | 78 |
ENDIF(CMAKE_COMPILER_IS_GNUCC) |
79 |
||
989
70132355a297
Ignore empty files (like #ifdef'd out platform code) on Sun Studio compiler.
Ryan C. Gordon <icculus@icculus.org>
parents:
985
diff
changeset
|
80 |
IF(CMAKE_C_COMPILER_ID STREQUAL "SunPro") |
70132355a297
Ignore empty files (like #ifdef'd out platform code) on Sun Studio compiler.
Ryan C. Gordon <icculus@icculus.org>
parents:
985
diff
changeset
|
81 |
ADD_DEFINITIONS(-erroff=E_EMPTY_TRANSLATION_UNIT) |
991
9748fd040468
Added the Sun Studio equivalent of -fvisibility=hidden
Ryan C. Gordon <icculus@icculus.org>
parents:
990
diff
changeset
|
82 |
ADD_DEFINITIONS(-xldscope=hidden) |
989
70132355a297
Ignore empty files (like #ifdef'd out platform code) on Sun Studio compiler.
Ryan C. Gordon <icculus@icculus.org>
parents:
985
diff
changeset
|
83 |
ENDIF(CMAKE_C_COMPILER_ID STREQUAL "SunPro") |
70132355a297
Ignore empty files (like #ifdef'd out platform code) on Sun Studio compiler.
Ryan C. Gordon <icculus@icculus.org>
parents:
985
diff
changeset
|
84 |
|
836
6514fba91816
Patched to compile with latest Platform SDK.
Ryan C. Gordon <icculus@icculus.org>
parents:
833
diff
changeset
|
85 |
IF(MSVC) |
6514fba91816
Patched to compile with latest Platform SDK.
Ryan C. Gordon <icculus@icculus.org>
parents:
833
diff
changeset
|
86 |
# VS.NET 8.0 got really really anal about strcpy, etc, which even if we |
6514fba91816
Patched to compile with latest Platform SDK.
Ryan C. Gordon <icculus@icculus.org>
parents:
833
diff
changeset
|
87 |
# cleaned up our code, zlib, etc still use...so disable the warning. |
6514fba91816
Patched to compile with latest Platform SDK.
Ryan C. Gordon <icculus@icculus.org>
parents:
833
diff
changeset
|
88 |
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS=1) |
6514fba91816
Patched to compile with latest Platform SDK.
Ryan C. Gordon <icculus@icculus.org>
parents:
833
diff
changeset
|
89 |
ENDIF(MSVC) |
798 | 90 |
|
91 |
# Basic chunks of source code ... |
|
92 |
||
93 |
SET(ZLIB_SRCS |
|
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
94 |
src/zlib123/adler32.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
95 |
src/zlib123/compress.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
96 |
src/zlib123/crc32.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
97 |
src/zlib123/deflate.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
98 |
src/zlib123/gzio.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
99 |
src/zlib123/infback.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
100 |
src/zlib123/inffast.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
101 |
src/zlib123/inflate.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
102 |
src/zlib123/inftrees.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
103 |
src/zlib123/trees.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
104 |
src/zlib123/uncompr.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
105 |
src/zlib123/zutil.c |
798 | 106 |
) |
107 |
||
108 |
SET(LZMA_SRCS |
|
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
109 |
src/lzma/C/7zCrc.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
110 |
src/lzma/C/Archive/7z/7zBuffer.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
111 |
src/lzma/C/Archive/7z/7zDecode.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
112 |
src/lzma/C/Archive/7z/7zExtract.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
113 |
src/lzma/C/Archive/7z/7zHeader.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
114 |
src/lzma/C/Archive/7z/7zIn.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
115 |
src/lzma/C/Archive/7z/7zItem.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
116 |
src/lzma/C/Archive/7z/7zMethodID.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
117 |
src/lzma/C/Compress/Branch/BranchX86.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
118 |
src/lzma/C/Compress/Branch/BranchX86_2.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
119 |
src/lzma/C/Compress/Lzma/LzmaDecode.c |
798 | 120 |
) |
121 |
||
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
122 |
IF(BEOS) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
123 |
# We add this explicitly, since we don't want CMake to think this |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
124 |
# is a C++ project unless we're on BeOS. |
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
125 |
SET(PHYSFS_BEOS_SRCS src/platform_beos.cpp) |
1133
958df28c5449
Haiku fixes, merged from stable-2.0 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1128
diff
changeset
|
126 |
FIND_LIBRARY(BE_LIBRARY be) |
958df28c5449
Haiku fixes, merged from stable-2.0 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1128
diff
changeset
|
127 |
FIND_LIBRARY(ROOT_LIBRARY root) |
958df28c5449
Haiku fixes, merged from stable-2.0 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1128
diff
changeset
|
128 |
SET(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} ${BE_LIBRARY} ${ROOT_LIBRARY}) |
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
129 |
ENDIF(BEOS) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
130 |
|
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
131 |
# Almost everything is "compiled" here, but things that don't apply to the |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
132 |
# build are #ifdef'd out. This is to make it easy to embed PhysicsFS into |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
133 |
# another project or bring up a new build system: just compile all the source |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
134 |
# code and #define the things you want. |
798 | 135 |
SET(PHYSFS_SRCS |
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
136 |
src/physfs.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
137 |
src/physfs_byteorder.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
138 |
src/physfs_unicode.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
139 |
src/platform_posix.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
140 |
src/platform_unix.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
141 |
src/platform_macosx.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
142 |
src/platform_windows.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
143 |
src/archiver_dir.c |
1128
067d8e76261e
Moved most the cut-and-paste between simple archivers to one file.
Ryan C. Gordon <icculus@icculus.org>
parents:
1066
diff
changeset
|
144 |
src/archiver_unpacked.c |
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
145 |
src/archiver_grp.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
146 |
src/archiver_hog.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
147 |
src/archiver_lzma.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
148 |
src/archiver_mvl.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
149 |
src/archiver_qpak.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
150 |
src/archiver_wad.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
151 |
src/archiver_zip.c |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
1051
diff
changeset
|
152 |
src/archiver_iso9660.c |
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
153 |
${PHYSFS_BEOS_SRCS} |
798 | 154 |
) |
155 |
||
156 |
||
157 |
# platform layers ... |
|
158 |
||
159 |
IF(UNIX) |
|
160 |
IF(BEOS) |
|
161 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
162 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
163 |
SET(HAVE_PTHREAD_H TRUE) |
798 | 164 |
ELSE(BEOS) |
165 |
# !!! FIXME |
|
166 |
# AC_DEFINE([PHYSFS_HAVE_LLSEEK], 1, [define if we have llseek]) |
|
167 |
CHECK_INCLUDE_FILE(sys/ucred.h HAVE_UCRED_H) |
|
168 |
IF(HAVE_UCRED_H) |
|
169 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_SYS_UCRED_H=1) |
|
170 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
|
171 |
ENDIF(HAVE_UCRED_H) |
|
172 |
||
173 |
CHECK_INCLUDE_FILE(mntent.h HAVE_MNTENT_H) |
|
174 |
IF(HAVE_MNTENT_H) |
|
175 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_MNTENT_H=1) |
|
176 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
|
177 |
ENDIF(HAVE_MNTENT_H) |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
178 |
|
990
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
179 |
# !!! FIXME: Solaris fails this, because mnttab.h implicitly |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
180 |
# !!! FIXME: depends on other system headers. :( |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
181 |
#CHECK_INCLUDE_FILE(sys/mnttab.h HAVE_SYS_MNTTAB_H) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
182 |
CHECK_C_SOURCE_COMPILES(" |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
183 |
#include <stdio.h> |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
184 |
#include <sys/mnttab.h> |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
185 |
int main(int argc, char **argv) { return 0; } |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
186 |
" HAVE_SYS_MNTTAB_H) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
187 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
188 |
IF(HAVE_SYS_MNTTAB_H) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
189 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_SYS_MNTTAB_H=1) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
190 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
191 |
ENDIF(HAVE_SYS_MNTTAB_H) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
989
diff
changeset
|
192 |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
193 |
CHECK_INCLUDE_FILE(pthread.h HAVE_PTHREAD_H) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
194 |
IF(HAVE_PTHREAD_H) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
195 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
196 |
ENDIF(HAVE_PTHREAD_H) |
798 | 197 |
ENDIF(BEOS) |
198 |
ENDIF(UNIX) |
|
199 |
||
1197
65f35dc8f84c
Removed OS/2 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1196
diff
changeset
|
200 |
IF(WINDOWS) |
798 | 201 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
202 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
|
1197
65f35dc8f84c
Removed OS/2 support.
Ryan C. Gordon <icculus@icculus.org>
parents:
1196
diff
changeset
|
203 |
ENDIF(WINDOWS) |
798 | 204 |
|
205 |
IF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
|
206 |
ADD_DEFINITIONS(-DPHYSFS_NO_CDROM_SUPPORT=1) |
|
207 |
MESSAGE(WARNING " ***") |
|
208 |
MESSAGE(WARNING " *** There is no CD-ROM support in this build!") |
|
209 |
MESSAGE(WARNING " *** PhysicsFS will just pretend there are no discs.") |
|
210 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
|
211 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
|
212 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
|
213 |
MESSAGE(WARNING " ***") |
|
214 |
ENDIF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
|
215 |
||
216 |
IF(PHYSFS_HAVE_THREAD_SUPPORT) |
|
217 |
ADD_DEFINITIONS(-D_REENTRANT -D_THREAD_SAFE) |
|
218 |
ELSE(PHYSFS_HAVE_THREAD_SUPPORT) |
|
1047
18ae36a7f55b
Catch case where we use the Unix code on a non-Unix system that lacks pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
1044
diff
changeset
|
219 |
ADD_DEFINITIONS(-DPHYSFS_NO_THREAD_SUPPORT=1) |
798 | 220 |
MESSAGE(WARNING " ***") |
221 |
MESSAGE(WARNING " *** There is no thread support in this build!") |
|
222 |
MESSAGE(WARNING " *** PhysicsFS will NOT be reentrant!") |
|
223 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
|
224 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
|
225 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
|
226 |
MESSAGE(WARNING " ***") |
|
227 |
ENDIF(PHYSFS_HAVE_THREAD_SUPPORT) |
|
228 |
||
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
229 |
CHECK_INCLUDE_FILE(assert.h HAVE_ASSERT_H) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
230 |
IF(HAVE_ASSERT_H) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
231 |
ADD_DEFINITIONS(-DHAVE_ASSERT_H=1) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
232 |
ENDIF(HAVE_ASSERT_H) |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
233 |
|
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
234 |
|
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
235 |
|
798 | 236 |
# Archivers ... |
237 |
||
238 |
OPTION(PHYSFS_ARCHIVE_ZIP "Enable ZIP support" TRUE) |
|
239 |
IF(PHYSFS_ARCHIVE_ZIP) |
|
240 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ZIP=1) |
|
241 |
SET(PHYSFS_NEED_ZLIB TRUE) |
|
242 |
ENDIF(PHYSFS_ARCHIVE_ZIP) |
|
243 |
||
244 |
OPTION(PHYSFS_ARCHIVE_7Z "Enable 7zip support" TRUE) |
|
245 |
IF(PHYSFS_ARCHIVE_7Z) |
|
246 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_7Z=1) |
|
247 |
# !!! FIXME: rename to 7z.c? |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
248 |
SET(PHYSFS_SRCS ${PHYSFS_SRCS} ${LZMA_SRCS}) |
798 | 249 |
ENDIF(PHYSFS_ARCHIVE_7Z) |
250 |
||
251 |
OPTION(PHYSFS_ARCHIVE_GRP "Enable Build Engine GRP support" TRUE) |
|
252 |
IF(PHYSFS_ARCHIVE_GRP) |
|
253 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_GRP=1) |
|
254 |
ENDIF(PHYSFS_ARCHIVE_GRP) |
|
255 |
||
256 |
OPTION(PHYSFS_ARCHIVE_WAD "Enable Doom WAD support" TRUE) |
|
257 |
IF(PHYSFS_ARCHIVE_WAD) |
|
258 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_WAD=1) |
|
259 |
ENDIF(PHYSFS_ARCHIVE_WAD) |
|
260 |
||
261 |
OPTION(PHYSFS_ARCHIVE_HOG "Enable Descent I/II HOG support" TRUE) |
|
262 |
IF(PHYSFS_ARCHIVE_HOG) |
|
263 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_HOG=1) |
|
264 |
ENDIF(PHYSFS_ARCHIVE_HOG) |
|
265 |
||
266 |
OPTION(PHYSFS_ARCHIVE_MVL "Enable Descent I/II MVL support" TRUE) |
|
267 |
IF(PHYSFS_ARCHIVE_MVL) |
|
268 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_MVL=1) |
|
269 |
ENDIF(PHYSFS_ARCHIVE_MVL) |
|
270 |
||
271 |
OPTION(PHYSFS_ARCHIVE_QPAK "Enable Quake I/II QPAK support" TRUE) |
|
272 |
IF(PHYSFS_ARCHIVE_QPAK) |
|
273 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_QPAK=1) |
|
274 |
ENDIF(PHYSFS_ARCHIVE_QPAK) |
|
275 |
||
1066
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
276 |
OPTION(PHYSFS_ARCHIVE_ISO9660 "Enable ISO9660 support" TRUE) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
277 |
IF(PHYSFS_ARCHIVE_ISO9660) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
278 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ISO9660=1) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
279 |
ENDIF(PHYSFS_ARCHIVE_ISO9660) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
280 |
|
798 | 281 |
|
282 |
# See if some archiver required zlib, and see about using system version. |
|
283 |
||
284 |
IF(PHYSFS_NEED_ZLIB) |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
285 |
FIND_PACKAGE(ZLIB) |
798 | 286 |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
287 |
IF(ZLIB_FOUND) |
798 | 288 |
OPTION(PHYSFS_INTERNAL_ZLIB "Link own zlib instead of system library" FALSE) |
289 |
ELSE(HAVE_SYSTEM_ZLIB) |
|
290 |
SET(PHYSFS_INTERNAL_ZLIB TRUE) |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
291 |
ENDIF(ZLIB_FOUND) |
798 | 292 |
|
293 |
IF(PHYSFS_INTERNAL_ZLIB) |
|
1139
861def17a888
Fixed include path when using internal zlib.
Ryan C. Gordon <icculus@icculus.org>
parents:
1133
diff
changeset
|
294 |
INCLUDE_DIRECTORIES(./src/zlib123) |
798 | 295 |
ADD_DEFINITIONS(-DZ_PREFIX=1) |
296 |
SET(PHYSFS_SRCS ${PHYSFS_SRCS} ${ZLIB_SRCS}) |
|
297 |
ELSE(PHYSFS_INTERNAL_ZLIB) |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
298 |
SET(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} ${ZLIB_LIBRARY}) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
299 |
INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIR}) |
798 | 300 |
ENDIF(PHYSFS_INTERNAL_ZLIB) |
301 |
ENDIF(PHYSFS_NEED_ZLIB) |
|
302 |
||
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
303 |
OPTION(PHYSFS_BUILD_STATIC "Build static library" TRUE) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
304 |
IF(PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
305 |
ADD_LIBRARY(physfs-static STATIC ${PHYSFS_SRCS}) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
306 |
SET_TARGET_PROPERTIES(physfs-static PROPERTIES OUTPUT_NAME "physfs") |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
307 |
SET(PHYSFS_LIB_TARGET physfs-static) |
833
b260f190aa59
Whoops, switched two strings in CMakeLists.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
827
diff
changeset
|
308 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs-static") |
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
309 |
ENDIF(PHYSFS_BUILD_STATIC) |
798 | 310 |
|
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
311 |
OPTION(PHYSFS_BUILD_SHARED "Build shared library" TRUE) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
312 |
IF(PHYSFS_BUILD_SHARED) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
313 |
ADD_LIBRARY(physfs SHARED ${PHYSFS_SRCS}) |
805
b462f06edbca
Install libraries with a VERSION and SOVERSION.
Ryan C. Gordon <icculus@icculus.org>
parents:
804
diff
changeset
|
314 |
SET_TARGET_PROPERTIES(physfs PROPERTIES VERSION ${PHYSFS_VERSION}) |
b462f06edbca
Install libraries with a VERSION and SOVERSION.
Ryan C. Gordon <icculus@icculus.org>
parents:
804
diff
changeset
|
315 |
SET_TARGET_PROPERTIES(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION}) |
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
316 |
TARGET_LINK_LIBRARIES(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS}) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
317 |
SET(PHYSFS_LIB_TARGET physfs) |
833
b260f190aa59
Whoops, switched two strings in CMakeLists.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
827
diff
changeset
|
318 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs") |
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
319 |
ENDIF(PHYSFS_BUILD_SHARED) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
320 |
|
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
321 |
IF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
322 |
MESSAGE(FATAL "Both shared and static libraries are disabled!") |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
323 |
ENDIF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
324 |
|
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
325 |
# CMake FAQ says I need this... |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
326 |
IF(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
327 |
SET_TARGET_PROPERTIES(physfs PROPERTIES CLEAN_DIRECT_OUTPUT 1) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
328 |
SET_TARGET_PROPERTIES(physfs-static PROPERTIES CLEAN_DIRECT_OUTPUT 1) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
329 |
ENDIF(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC) |
798 | 330 |
|
878
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
331 |
OPTION(PHYSFS_BUILD_TEST "Build stdio test program." TRUE) |
798 | 332 |
MARK_AS_ADVANCED(PHYSFS_BUILD_TEST) |
333 |
IF(PHYSFS_BUILD_TEST) |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
334 |
FIND_PATH(READLINE_H readline/readline.h) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
335 |
FIND_PATH(HISTORY_H readline/history.h) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
336 |
IF(READLINE_H AND HISTORY_H) |
1133
958df28c5449
Haiku fixes, merged from stable-2.0 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1128
diff
changeset
|
337 |
FIND_LIBRARY(CURSES_LIBRARY NAMES curses ncurses) |
958df28c5449
Haiku fixes, merged from stable-2.0 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1128
diff
changeset
|
338 |
SET(CMAKE_REQUIRED_LIBRARIES ${CURSES_LIBRARY}) |
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
339 |
FIND_LIBRARY(READLINE_LIBRARY readline) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
340 |
FIND_LIBRARY(HISTORY_LIBRARY history) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
341 |
IF(READLINE_LIBRARY AND HISTORY_LIBRARY) |
798 | 342 |
SET(HAVE_SYSTEM_READLINE TRUE) |
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
343 |
SET(TEST_PHYSFS_LIBS ${TEST_PHYSFS_LIBS} ${READLINE_LIBRARY} ${CURSES_LIBRARY}) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
344 |
INCLUDE_DIRECTORIES(${READLINE_H} ${HISTORY_H}) |
798 | 345 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_READLINE=1) |
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
346 |
ENDIF(READLINE_LIBRARY AND HISTORY_LIBRARY) |
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
347 |
ENDIF(READLINE_H AND HISTORY_H) |
798 | 348 |
ADD_EXECUTABLE(test_physfs test/test_physfs.c) |
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
349 |
TARGET_LINK_LIBRARIES(test_physfs ${PHYSFS_LIB_TARGET} ${TEST_PHYSFS_LIBS} ${OTHER_LDFLAGS}) |
804
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
350 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";test_physfs") |
798 | 351 |
ENDIF(PHYSFS_BUILD_TEST) |
352 |
||
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
353 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
354 |
# Scripting language bindings... |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
355 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
356 |
#CMake's SWIG support is basically useless. |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
357 |
#FIND_PACKAGE(SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
358 |
|
1159
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
359 |
OPTION(PHYSFS_BUILD_SWIG "Build ${_LANG} bindings." TRUE) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
360 |
MARK_AS_ADVANCED(PHYSFS_BUILD_SWIG) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
361 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
362 |
FIND_PROGRAM(SWIG swig DOC "Path to swig command line app: http://swig.org/") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
363 |
IF(NOT SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
364 |
MESSAGE(STATUS "SWIG not found. You won't be able to build scripting language bindings.") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
365 |
ELSE(NOT SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
366 |
MARK_AS_ADVANCED(SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
367 |
IF(DEFINED CMAKE_BUILD_TYPE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
368 |
IF((NOT CMAKE_BUILD_TYPE STREQUAL "") AND (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
369 |
IF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
370 |
SET(SWIG_OPT_CFLAGS "-small") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
371 |
ELSE(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
372 |
SET(SWIG_OPT_CFLAGS "-O") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
373 |
ENDIF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
374 |
ENDIF((NOT CMAKE_BUILD_TYPE STREQUAL "") AND (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
375 |
ENDIF(DEFINED CMAKE_BUILD_TYPE) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
376 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
377 |
SET(SWIG_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/physfs-swig-bindings") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
378 |
|
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
379 |
MACRO(CONFIGURE_SWIG_BINDING _LANG _INSTALLPATH _EXTRAOUTPUTS _EXTRACFLAGS _EXTRALDFLAGS) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
380 |
STRING(TOUPPER "${_LANG}" _UPPERLANG) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
381 |
STRING(TOLOWER "${_LANG}" _LOWERLANG) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
382 |
SET(_TARGET "physfs-${_LOWERLANG}") |
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
383 |
SET(_TARGETDIR "${SWIG_OUTPUT_DIR}/${_LOWERLANG}") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
384 |
|
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
385 |
IF(NOT EXISTS "${_TARGETDIR}") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
386 |
FILE(MAKE_DIRECTORY "${_TARGETDIR}") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
387 |
ENDIF(NOT EXISTS "${_TARGETDIR}") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
388 |
|
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
389 |
IF(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
390 |
ADD_CUSTOM_COMMAND( |
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
391 |
OUTPUT "${_TARGETDIR}/${_TARGET}.c" ${_EXTRAOUTPUTS} |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
392 |
MAIN_DEPENDENCY "${CMAKE_CURRENT_SOURCE_DIR}/extras/physfs-swig.i" |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
393 |
COMMAND "${SWIG}" |
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
394 |
ARGS ${SWIG_OPT_CFLAGS} -${_LOWERLANG} -outdir "${_TARGETDIR}" -o "${_TARGETDIR}/${_TARGET}.c" "${CMAKE_CURRENT_SOURCE_DIR}/extras/physfs-swig.i" |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
395 |
COMMENT "Generating ${_LANG} bindings..." |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
396 |
) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
397 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
398 |
ADD_LIBRARY(${_TARGET} SHARED "${_TARGETDIR}/${_TARGET}.c") |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
399 |
TARGET_LINK_LIBRARIES(${_TARGET} ${PHYSFS_LIB_TARGET}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
400 |
SET_TARGET_PROPERTIES(${_TARGET} PROPERTIES |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
401 |
COMPILE_FLAGS "${_EXTRACFLAGS}" |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
402 |
LINK_FLAGS "${_EXTRALDFLAGS}" |
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
403 |
LIBRARY_OUTPUT_NAME "physfs" |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
404 |
LIBRARY_OUTPUT_DIRECTORY "${_TARGETDIR}" |
1039
6ea910694da8
Not sure if this is still needed (it's definitely unneeded in CMake 2.8).
Ryan C. Gordon <icculus@icculus.org>
parents:
1038
diff
changeset
|
405 |
CLEAN_DIRECT_OUTPUT 1 |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
406 |
) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
407 |
INSTALL(TARGETS ${_TARGET} LIBRARY DESTINATION "${_INSTALLPATH}") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
408 |
MESSAGE(STATUS "${_LANG} bindings configured!") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
409 |
ELSE(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
410 |
MESSAGE(STATUS "Couldn't figure out ${_LANG} configuration. Skipping ${_LANG} bindings.") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
411 |
ENDIF(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
412 |
ENDMACRO(CONFIGURE_SWIG_BINDING) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
413 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
414 |
MACRO(ADD_SCRIPT_BINDING_OPTION _VAR _LANG _DEFVAL) |
1159
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
415 |
SET(BUILDSWIGVAL ${_DEFVAL}) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
416 |
IF(NOT PHYSFS_BUILD_SWIG) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
417 |
SET(BUILDSWIGVAL FALSE) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
418 |
ENDIF(NOT PHYSFS_BUILD_SWIG) |
06fa9794e5c6
Added an option to disable all SWIG bindings at once.
Ryan C. Gordon <icculus@icculus.org>
parents:
1158
diff
changeset
|
419 |
OPTION(${_VAR} "Build ${_LANG} bindings." ${BUILDSWIGVAL}) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
420 |
MARK_AS_ADVANCED(${_VAR}) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
421 |
ENDMACRO(ADD_SCRIPT_BINDING_OPTION) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
422 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
423 |
ADD_SCRIPT_BINDING_OPTION(PHYSFS_BUILD_PERL "Perl" TRUE) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
424 |
ADD_SCRIPT_BINDING_OPTION(PHYSFS_BUILD_RUBY "Ruby" TRUE) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
425 |
ENDIF(NOT SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
426 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
427 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
428 |
MESSAGE(STATUS "Configuring Perl bindings...") |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
429 |
FIND_PROGRAM(PERL perl DOC "Path to perl command line app: http://perl.org/") |
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
430 |
IF(NOT PERL) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
431 |
MESSAGE(STATUS "Perl not found. You won't be able to build perl bindings.") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
432 |
SET(PHYSFS_BUILD_PERL FALSE) |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
433 |
ENDIF(NOT PERL) |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
434 |
MARK_AS_ADVANCED(PERL) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
435 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
436 |
MACRO(GET_PERL_CONFIG _KEY _VALUE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
437 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
438 |
MESSAGE(STATUS "Figuring out perl config value '${_KEY}' ...") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
439 |
EXECUTE_PROCESS( |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
440 |
COMMAND ${PERL} -w -e "use Config; print \$Config{${_KEY}};" |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
441 |
RESULT_VARIABLE GET_PERL_CONFIG_RC |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
442 |
OUTPUT_VARIABLE ${_VALUE} |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
443 |
) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
444 |
IF(NOT GET_PERL_CONFIG_RC EQUAL 0) |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
445 |
MESSAGE(STATUS "Perl executable ('${PERL}') reported failure: ${GET_PERL_CONFIG_RC}") |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
446 |
SET(PHYSFS_BUILD_PERL FALSE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
447 |
ENDIF(NOT GET_PERL_CONFIG_RC EQUAL 0) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
448 |
IF(NOT ${_VALUE}) |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
449 |
MESSAGE(STATUS "Perl executable ('${PERL}') didn't have a value for '${_KEY}'") |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
450 |
SET(PHYSFS_BUILD_PERL FALSE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
451 |
ENDIF(NOT ${_VALUE}) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
452 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
453 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
454 |
MESSAGE(STATUS "Perl says: '${${_VALUE}}'.") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
455 |
ENDIF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
456 |
ENDIF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
457 |
ENDMACRO(GET_PERL_CONFIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
458 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
459 |
# !!! FIXME: installsitearch might be the wrong location. |
1034
a20aae42114b
I think this gets the right Perl include path value.
Ryan C. Gordon <icculus@icculus.org>
parents:
1033
diff
changeset
|
460 |
GET_PERL_CONFIG("archlibexp" PERL_INCLUDE_PATH) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
461 |
GET_PERL_CONFIG("ccflags" PERL_CCFLAGS) |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
462 |
GET_PERL_CONFIG("ldflags" PERL_LDFLAGS) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
463 |
GET_PERL_CONFIG("installsitearch" PERL_INSTALL_PATH) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
464 |
|
1037
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
465 |
# !!! FIXME: this test for Mac OS X is wrong. |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
466 |
IF(MACOSX) |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
467 |
GET_PERL_CONFIG("libperl" PERL_LIBPERL) |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
468 |
SET(TMPLIBPERL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
469 |
STRING(REGEX REPLACE "^lib" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
470 |
STRING(REGEX REPLACE "\\.so$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
471 |
STRING(REGEX REPLACE "\\.dylib$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
472 |
STRING(REGEX REPLACE "\\.dll$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
473 |
IF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
474 |
MESSAGE(STATUS "Stripped '${PERL_LIBPERL}' down to '${TMPLIBPERL}'.") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
475 |
SET(PERL_LIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
476 |
ENDIF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
477 |
SET(PERL_LIBPERL "-l${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
478 |
ENDIF(MACOSX) |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
479 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
480 |
CONFIGURE_SWIG_BINDING(Perl "${PERL_INSTALL_PATH}" "${SWIG_OUTPUT_DIR}/perl/physfs.pm" "\"-I${PERL_INCLUDE_PATH}/CORE\" ${PERL_CCFLAGS} -w" "\"-L${PERL_INCLUDE_PATH}/CORE\" ${PERL_LIBPERL} ${PERL_LDFLAGS}") |
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
481 |
INSTALL(FILES "${SWIG_OUTPUT_DIR}/perl/physfs.pm" DESTINATION "${PERL_INSTALL_PATH}") |
1044
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
482 |
INSTALL( |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
483 |
FILES test/test_physfs.pl |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
484 |
DESTINATION bin |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
485 |
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
486 |
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
487 |
) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
488 |
ENDIF(PHYSFS_BUILD_PERL) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
489 |
|
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
490 |
# !!! FIXME: lots of cut-and-paste from perl bindings. |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
491 |
IF(PHYSFS_BUILD_RUBY) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
492 |
MESSAGE(STATUS "Configuring Ruby bindings...") |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
493 |
FIND_PROGRAM(RUBY ruby DOC "Path to ruby command line app: http://ruby-lang.org/") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
494 |
IF(NOT RUBY) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
495 |
MESSAGE(STATUS "Ruby not found. You won't be able to build ruby bindings.") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
496 |
SET(PHYSFS_BUILD_RUBY FALSE) |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
497 |
ENDIF(NOT RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
498 |
MARK_AS_ADVANCED(RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
499 |
|
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
500 |
MACRO(GET_RUBY_CONFIG _KEY _VALUE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
501 |
IF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
502 |
MESSAGE(STATUS "Figuring out ruby config value '${_KEY}' ...") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
503 |
EXECUTE_PROCESS( |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
504 |
COMMAND ${RUBY} -e "require 'rbconfig'; puts RbConfig::CONFIG['${_KEY}'];" |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
505 |
RESULT_VARIABLE GET_RUBY_CONFIG_RC |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
506 |
OUTPUT_VARIABLE ${_VALUE} |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
507 |
OUTPUT_STRIP_TRAILING_WHITESPACE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
508 |
) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
509 |
IF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
510 |
MESSAGE(STATUS "Ruby executable ('${RUBY}') reported failure: ${GET_RUBY_CONFIG_RC}") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
511 |
SET(PHYSFS_BUILD_RUBY FALSE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
512 |
ENDIF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
513 |
IF(NOT ${_VALUE}) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
514 |
MESSAGE(STATUS "Ruby executable ('${RUBY}') didn't have a value for '${_KEY}'") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
515 |
SET(PHYSFS_BUILD_RUBY FALSE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
516 |
ENDIF(NOT ${_VALUE}) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
517 |
|
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
518 |
IF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
519 |
MESSAGE(STATUS "Ruby says: '${${_VALUE}}'.") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
520 |
ENDIF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
521 |
ENDIF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
522 |
ENDMACRO(GET_RUBY_CONFIG) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
523 |
|
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
524 |
GET_RUBY_CONFIG("archdir" RUBY_INCLUDE_PATH) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
525 |
GET_RUBY_CONFIG("CFLAGS" RUBY_CCFLAGS) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
526 |
GET_RUBY_CONFIG("LDFLAGS" RUBY_LDFLAGS) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
527 |
GET_RUBY_CONFIG("sitearchdir" RUBY_INSTALL_PATH) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
528 |
GET_RUBY_CONFIG("LIBRUBYARG_SHARED" RUBY_LIBRUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
529 |
GET_RUBY_CONFIG("libdir" RUBY_LIBDIR) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
530 |
|
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
531 |
CONFIGURE_SWIG_BINDING(Ruby "${RUBY_INSTALL_PATH}" "" "\"-I${RUBY_INCLUDE_PATH}\" ${RUBY_CCFLAGS} -w" "\"-L${RUBY_LIBDIR}\" ${RUBY_LIBRUBY} ${RUBY_LDFLAGS}") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
532 |
SET_TARGET_PROPERTIES(physfs-ruby PROPERTIES PREFIX "") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
533 |
INSTALL( |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
534 |
FILES test/test_physfs.rb |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
535 |
DESTINATION bin |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
536 |
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
537 |
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
538 |
) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
539 |
ENDIF(PHYSFS_BUILD_RUBY) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
540 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
541 |
|
804
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
542 |
INSTALL(TARGETS ${PHYSFS_INSTALL_TARGETS} |
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
543 |
RUNTIME DESTINATION bin |
1140
079b6bf97b23
Use LIB_SUFFIX to install to lib64 instead of lib (thanks, Cristian!).
Ryan C. Gordon <icculus@icculus.org>
parents:
1139
diff
changeset
|
544 |
LIBRARY DESTINATION lib${LIB_SUFFIX} |
079b6bf97b23
Use LIB_SUFFIX to install to lib64 instead of lib (thanks, Cristian!).
Ryan C. Gordon <icculus@icculus.org>
parents:
1139
diff
changeset
|
545 |
ARCHIVE DESTINATION lib${LIB_SUFFIX}) |
1015
7bd933e66d8d
Corrected physfs.h installation for new directory layout (thanks, Patrice!).
Ryan C. Gordon <icculus@icculus.org>
parents:
1009
diff
changeset
|
546 |
INSTALL(FILES src/physfs.h DESTINATION include) |
804
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
547 |
|
798 | 548 |
FIND_PACKAGE(Doxygen) |
549 |
IF(DOXYGEN_FOUND) |
|
1151
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
550 |
SET(PHYSFS_OUTPUT_DOXYFILE "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile") |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
551 |
CONFIGURE_FILE( |
1153
5cbedebaa623
Corrected doc paths for development branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
552 |
"${CMAKE_CURRENT_SOURCE_DIR}/docs/Doxyfile" |
1151
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
553 |
"${PHYSFS_OUTPUT_DOXYFILE}" |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
554 |
COPYONLY |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
555 |
) |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
556 |
FILE(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "\n\n# Below auto-generated by cmake...\n\n") |
1155
bd6526fa8f95
Put some quotes around autogenerated Doxygen options.
Ryan C. Gordon <icculus@icculus.org>
parents:
1153
diff
changeset
|
557 |
FILE(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "PROJECT_NUMBER = \"${PHYSFS_VERSION}\"\n") |
bd6526fa8f95
Put some quotes around autogenerated Doxygen options.
Ryan C. Gordon <icculus@icculus.org>
parents:
1153
diff
changeset
|
558 |
FILE(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "OUTPUT_DIRECTORY = \"${CMAKE_CURRENT_BINARY_DIR}/docs\"\n") |
1151
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
559 |
FILE(APPEND "${PHYSFS_OUTPUT_DOXYFILE}" "\n# End auto-generated section.\n\n") |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
560 |
|
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
561 |
ADD_CUSTOM_TARGET( |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
562 |
docs |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
563 |
${DOXYGEN_EXECUTABLE} "${PHYSFS_OUTPUT_DOXYFILE}" |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
564 |
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
565 |
COMMENT "Building documentation in 'docs' directory..." |
a9e1bbe6e8d6
Fixed "make docs" for out-of-tree builds.
Ryan C. Gordon <icculus@icculus.org>
parents:
1140
diff
changeset
|
566 |
) |
798 | 567 |
ELSE(DOXYGEN_FOUND) |
568 |
MESSAGE(STATUS "Doxygen not found. You won't be able to build documentation.") |
|
569 |
ENDIF(DOXYGEN_FOUND) |
|
570 |
||
885
e1fe7fe85939
Added a hack for "make dist" functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
878
diff
changeset
|
571 |
IF(UNIX) |
1042
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
572 |
SET(PHYSFS_TARBALL "${CMAKE_CURRENT_SOURCE_DIR}/../physfs-${PHYSFS_VERSION}.tar.gz") |
1041
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
573 |
ADD_CUSTOM_TARGET( |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
574 |
dist |
1042
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
575 |
hg archive -t tgz "${PHYSFS_TARBALL}" |
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
576 |
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" |
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
577 |
COMMENT "Building source tarball '${PHYSFS_TARBALL}'..." |
1041
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
578 |
) |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
579 |
ADD_CUSTOM_TARGET( |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
580 |
uninstall |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
581 |
"${CMAKE_CURRENT_SOURCE_DIR}/extras/uninstall.sh" |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
582 |
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
583 |
COMMENT "Uninstall the project..." |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
584 |
) |
885
e1fe7fe85939
Added a hack for "make dist" functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
878
diff
changeset
|
585 |
ENDIF(UNIX) |
798 | 586 |
|
587 |
MACRO(MESSAGE_BOOL_OPTION _NAME _VALUE) |
|
588 |
IF(${_VALUE}) |
|
589 |
MESSAGE(STATUS " ${_NAME}: enabled") |
|
590 |
ELSE(${_VALUE}) |
|
591 |
MESSAGE(STATUS " ${_NAME}: disabled") |
|
592 |
ENDIF(${_VALUE}) |
|
593 |
ENDMACRO(MESSAGE_BOOL_OPTION) |
|
594 |
||
595 |
MESSAGE(STATUS "PhysicsFS will build with the following options:") |
|
596 |
MESSAGE_BOOL_OPTION("ZIP support" PHYSFS_ARCHIVE_ZIP) |
|
597 |
MESSAGE_BOOL_OPTION("7zip support" PHYSFS_ARCHIVE_7Z) |
|
598 |
MESSAGE_BOOL_OPTION("GRP support" PHYSFS_ARCHIVE_GRP) |
|
599 |
MESSAGE_BOOL_OPTION("WAD support" PHYSFS_ARCHIVE_WAD) |
|
600 |
MESSAGE_BOOL_OPTION("HOG support" PHYSFS_ARCHIVE_HOG) |
|
601 |
MESSAGE_BOOL_OPTION("MVL support" PHYSFS_ARCHIVE_MVL) |
|
602 |
MESSAGE_BOOL_OPTION("QPAK support" PHYSFS_ARCHIVE_QPAK) |
|
603 |
MESSAGE_BOOL_OPTION("CD-ROM drive support" PHYSFS_HAVE_CDROM_SUPPORT) |
|
604 |
MESSAGE_BOOL_OPTION("Thread safety" PHYSFS_HAVE_THREAD_SUPPORT) |
|
605 |
MESSAGE_BOOL_OPTION("Build own zlib" PHYSFS_INTERNAL_ZLIB) |
|
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
606 |
MESSAGE_BOOL_OPTION("Build static library" PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
607 |
MESSAGE_BOOL_OPTION("Build shared library" PHYSFS_BUILD_SHARED) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
608 |
MESSAGE_BOOL_OPTION("Build Perl bindings" PHYSFS_BUILD_PERL) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
609 |
MESSAGE_BOOL_OPTION("Build Ruby bindings" PHYSFS_BUILD_RUBY) |
878
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
610 |
MESSAGE_BOOL_OPTION("Build stdio test program" PHYSFS_BUILD_TEST) |
798 | 611 |
IF(PHYSFS_BUILD_TEST) |
612 |
MESSAGE_BOOL_OPTION(" Use readline in test program" HAVE_SYSTEM_READLINE) |
|
613 |
ENDIF(PHYSFS_BUILD_TEST) |
|
614 |
||
615 |
# end of CMakeLists.txt ... |
|
616 |