author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 27 Aug 2010 14:27:15 -0400 | |
changeset 1116 | 20dfca1e8a27 |
parent 1066 | e1d83e3b5d32 |
child 1128 | 067d8e76261e |
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) |
956
3da716cfe09f
Upped version to 2.0.0!
Ryan C. Gordon <icculus@icculus.org>
parents:
952
diff
changeset
|
9 |
SET(PHYSFS_VERSION 2.0.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 |
||
981 | 24 |
# And this might be wrong... |
25 |
IF (CMAKE_SYSTEM MATCHES OS2) |
|
26 |
SET(OS2 TRUE) |
|
27 |
ENDIF (CMAKE_SYSTEM MATCHES OS2) |
|
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) |
|
801
a6d25b52f2c7
Fixes to CMakeLists.txt for Intel Mac.
Ryan C. Gordon <icculus@icculus.org>
parents:
799
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. |
56a3873c63e4
Don't use -fvisibility=hidden on Windows, since MinGW doesn't support it. :(
Ryan C. Gordon <icculus@icculus.org>
parents:
1005
diff
changeset
|
71 |
IF(NOT OS2 AND NOT SOLARIS AND NOT WINDOWS) |
981 | 72 |
ADD_DEFINITIONS(-fvisibility=hidden) |
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
|
73 |
ENDIF(NOT OS2 AND 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) |
821
c7dd97edaa4e
Fixes for BeOS and gcc2.
Ryan C. Gordon <icculus@icculus.org>
parents:
818
diff
changeset
|
126 |
SET(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} be root) |
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
|
127 |
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
|
128 |
|
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 |
# 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
|
130 |
# 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
|
131 |
# 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
|
132 |
# code and #define the things you want. |
798 | 133 |
SET(PHYSFS_SRCS |
972
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
134 |
src/physfs.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
135 |
src/physfs_byteorder.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
136 |
src/physfs_unicode.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
137 |
src/platform_os2.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
138 |
src/platform_pocketpc.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 |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
144 |
src/archiver_grp.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
145 |
src/archiver_hog.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
146 |
src/archiver_lzma.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
147 |
src/archiver_mvl.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
148 |
src/archiver_qpak.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
149 |
src/archiver_wad.c |
254427fc42ab
Moved directory structure around.
Ryan C. Gordon <icculus@icculus.org>
parents:
956
diff
changeset
|
150 |
src/archiver_zip.c |
1064
cc4db73e87d1
ISO9660 archiver, compliments of Christoph Nelles.
Ryan C. Gordon <icculus@icculus.org>
parents:
1051
diff
changeset
|
151 |
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
|
152 |
${PHYSFS_BEOS_SRCS} |
798 | 153 |
) |
154 |
||
155 |
||
156 |
# platform layers ... |
|
157 |
||
158 |
IF(UNIX) |
|
159 |
IF(BEOS) |
|
160 |
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
|
161 |
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
|
162 |
SET(HAVE_PTHREAD_H TRUE) |
798 | 163 |
ELSE(BEOS) |
164 |
# !!! FIXME |
|
165 |
# AC_DEFINE([PHYSFS_HAVE_LLSEEK], 1, [define if we have llseek]) |
|
166 |
CHECK_INCLUDE_FILE(sys/ucred.h HAVE_UCRED_H) |
|
167 |
IF(HAVE_UCRED_H) |
|
168 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_SYS_UCRED_H=1) |
|
169 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
|
170 |
ENDIF(HAVE_UCRED_H) |
|
171 |
||
172 |
CHECK_INCLUDE_FILE(mntent.h HAVE_MNTENT_H) |
|
173 |
IF(HAVE_MNTENT_H) |
|
174 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_MNTENT_H=1) |
|
175 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
|
176 |
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
|
177 |
|
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
|
178 |
# !!! 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
|
179 |
# !!! 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
|
180 |
#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
|
181 |
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
|
182 |
#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
|
183 |
#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
|
184 |
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
|
185 |
" 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
|
186 |
|
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 |
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
|
188 |
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
|
189 |
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
|
190 |
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
|
191 |
|
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
|
192 |
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
|
193 |
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
|
194 |
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
|
195 |
ENDIF(HAVE_PTHREAD_H) |
798 | 196 |
ENDIF(BEOS) |
197 |
ENDIF(UNIX) |
|
198 |
||
981 | 199 |
IF(WINDOWS OR OS2) |
798 | 200 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
201 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
|
981 | 202 |
ENDIF(WINDOWS OR OS2) |
798 | 203 |
|
204 |
IF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
|
205 |
ADD_DEFINITIONS(-DPHYSFS_NO_CDROM_SUPPORT=1) |
|
206 |
MESSAGE(WARNING " ***") |
|
207 |
MESSAGE(WARNING " *** There is no CD-ROM support in this build!") |
|
208 |
MESSAGE(WARNING " *** PhysicsFS will just pretend there are no discs.") |
|
209 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
|
210 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
|
211 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
|
212 |
MESSAGE(WARNING " ***") |
|
213 |
ENDIF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
|
214 |
||
215 |
IF(PHYSFS_HAVE_THREAD_SUPPORT) |
|
216 |
ADD_DEFINITIONS(-D_REENTRANT -D_THREAD_SAFE) |
|
217 |
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
|
218 |
ADD_DEFINITIONS(-DPHYSFS_NO_THREAD_SUPPORT=1) |
798 | 219 |
MESSAGE(WARNING " ***") |
220 |
MESSAGE(WARNING " *** There is no thread support in this build!") |
|
221 |
MESSAGE(WARNING " *** PhysicsFS will NOT be reentrant!") |
|
222 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
|
223 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
|
224 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
|
225 |
MESSAGE(WARNING " ***") |
|
226 |
ENDIF(PHYSFS_HAVE_THREAD_SUPPORT) |
|
227 |
||
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
|
228 |
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
|
229 |
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
|
230 |
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
|
231 |
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
|
232 |
|
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 |
|
798 | 235 |
# Archivers ... |
236 |
||
237 |
OPTION(PHYSFS_ARCHIVE_ZIP "Enable ZIP support" TRUE) |
|
238 |
IF(PHYSFS_ARCHIVE_ZIP) |
|
239 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ZIP=1) |
|
240 |
SET(PHYSFS_NEED_ZLIB TRUE) |
|
241 |
ENDIF(PHYSFS_ARCHIVE_ZIP) |
|
242 |
||
243 |
OPTION(PHYSFS_ARCHIVE_7Z "Enable 7zip support" TRUE) |
|
244 |
IF(PHYSFS_ARCHIVE_7Z) |
|
245 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_7Z=1) |
|
246 |
# !!! 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
|
247 |
SET(PHYSFS_SRCS ${PHYSFS_SRCS} ${LZMA_SRCS}) |
798 | 248 |
ENDIF(PHYSFS_ARCHIVE_7Z) |
249 |
||
250 |
OPTION(PHYSFS_ARCHIVE_GRP "Enable Build Engine GRP support" TRUE) |
|
251 |
IF(PHYSFS_ARCHIVE_GRP) |
|
252 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_GRP=1) |
|
253 |
ENDIF(PHYSFS_ARCHIVE_GRP) |
|
254 |
||
255 |
OPTION(PHYSFS_ARCHIVE_WAD "Enable Doom WAD support" TRUE) |
|
256 |
IF(PHYSFS_ARCHIVE_WAD) |
|
257 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_WAD=1) |
|
258 |
ENDIF(PHYSFS_ARCHIVE_WAD) |
|
259 |
||
260 |
OPTION(PHYSFS_ARCHIVE_HOG "Enable Descent I/II HOG support" TRUE) |
|
261 |
IF(PHYSFS_ARCHIVE_HOG) |
|
262 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_HOG=1) |
|
263 |
ENDIF(PHYSFS_ARCHIVE_HOG) |
|
264 |
||
265 |
OPTION(PHYSFS_ARCHIVE_MVL "Enable Descent I/II MVL support" TRUE) |
|
266 |
IF(PHYSFS_ARCHIVE_MVL) |
|
267 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_MVL=1) |
|
268 |
ENDIF(PHYSFS_ARCHIVE_MVL) |
|
269 |
||
270 |
OPTION(PHYSFS_ARCHIVE_QPAK "Enable Quake I/II QPAK support" TRUE) |
|
271 |
IF(PHYSFS_ARCHIVE_QPAK) |
|
272 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_QPAK=1) |
|
273 |
ENDIF(PHYSFS_ARCHIVE_QPAK) |
|
274 |
||
1066
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
275 |
OPTION(PHYSFS_ARCHIVE_ISO9660 "Enable ISO9660 support" TRUE) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
276 |
IF(PHYSFS_ARCHIVE_ISO9660) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
277 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ISO9660=1) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
278 |
ENDIF(PHYSFS_ARCHIVE_ISO9660) |
e1d83e3b5d32
Make ISO9660 archiver optional.
Ryan C. Gordon <icculus@icculus.org>
parents:
1064
diff
changeset
|
279 |
|
798 | 280 |
|
281 |
# See if some archiver required zlib, and see about using system version. |
|
282 |
||
283 |
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
|
284 |
FIND_PACKAGE(ZLIB) |
798 | 285 |
|
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
286 |
IF(ZLIB_FOUND) |
798 | 287 |
OPTION(PHYSFS_INTERNAL_ZLIB "Link own zlib instead of system library" FALSE) |
288 |
ELSE(HAVE_SYSTEM_ZLIB) |
|
289 |
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
|
290 |
ENDIF(ZLIB_FOUND) |
798 | 291 |
|
292 |
IF(PHYSFS_INTERNAL_ZLIB) |
|
293 |
INCLUDE_DIRECTORIES(zlib123) |
|
294 |
ADD_DEFINITIONS(-DZ_PREFIX=1) |
|
295 |
SET(PHYSFS_SRCS ${PHYSFS_SRCS} ${ZLIB_SRCS}) |
|
296 |
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
|
297 |
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
|
298 |
INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIR}) |
798 | 299 |
ENDIF(PHYSFS_INTERNAL_ZLIB) |
300 |
ENDIF(PHYSFS_NEED_ZLIB) |
|
301 |
||
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
302 |
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
|
303 |
IF(PHYSFS_BUILD_STATIC) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
304 |
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
|
305 |
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
|
306 |
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
|
307 |
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
|
308 |
ENDIF(PHYSFS_BUILD_STATIC) |
798 | 309 |
|
802
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
310 |
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
|
311 |
IF(PHYSFS_BUILD_SHARED) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
312 |
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
|
313 |
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
|
314 |
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
|
315 |
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
|
316 |
SET(PHYSFS_LIB_TARGET physfs) |
833
b260f190aa59
Whoops, switched two strings in CMakeLists.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
827
diff
changeset
|
317 |
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
|
318 |
ENDIF(PHYSFS_BUILD_SHARED) |
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
319 |
|
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
|
d04103af68a5
Can now build shared or static (or both) libraries.
Ryan C. Gordon <icculus@icculus.org>
parents:
801
diff
changeset
|
324 |
# 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
|
325 |
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
|
326 |
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
|
327 |
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
|
328 |
ENDIF(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC) |
798 | 329 |
|
878
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
330 |
OPTION(PHYSFS_BUILD_TEST "Build stdio test program." TRUE) |
798 | 331 |
MARK_AS_ADVANCED(PHYSFS_BUILD_TEST) |
332 |
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
|
333 |
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
|
334 |
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
|
335 |
IF(READLINE_H AND HISTORY_H) |
798 | 336 |
SET(CMAKE_REQUIRED_LIBRARIES curses) |
1005
cafe3867784c
Fixed CMakeLists.txt to properly handle cross-compiling (thanks, Marc!).
Ryan C. Gordon <icculus@icculus.org>
parents:
993
diff
changeset
|
337 |
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
|
338 |
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
|
339 |
IF(READLINE_LIBRARY AND HISTORY_LIBRARY) |
798 | 340 |
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
|
341 |
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
|
342 |
INCLUDE_DIRECTORIES(${READLINE_H} ${HISTORY_H}) |
798 | 343 |
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
|
344 |
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
|
345 |
ENDIF(READLINE_H AND HISTORY_H) |
798 | 346 |
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
|
347 |
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
|
348 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";test_physfs") |
798 | 349 |
ENDIF(PHYSFS_BUILD_TEST) |
350 |
||
878
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
351 |
OPTION(PHYSFS_BUILD_WX_TEST "Build wxWidgets test program." TRUE) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
352 |
MARK_AS_ADVANCED(PHYSFS_BUILD_WX_TEST) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
353 |
IF(PHYSFS_BUILD_WX_TEST) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
354 |
SET(wxWidgets_USE_LIBS base core adv) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
355 |
SET(wxWidgets_INCLUDE_DIRS_NO_SYSTEM 1) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
356 |
FIND_PACKAGE(wxWidgets) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
357 |
IF(wxWidgets_FOUND) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
358 |
INCLUDE(${wxWidgets_USE_FILE}) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
359 |
ADD_EXECUTABLE(wxtest_physfs test/wxtest_physfs.cpp) |
992
65f29e70a322
Fixed SET_SOURCE_FILES_PROPERTIES in CMakefile for wxWidgets test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
991
diff
changeset
|
360 |
SET_SOURCE_FILES_PROPERTIES(test/wxtest_physfs.cpp PROPERTIES COMPILE_FLAGS "${wxWidgets_CXX_FLAGS}") |
878
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
361 |
TARGET_LINK_LIBRARIES(wxtest_physfs ${PHYSFS_LIB_TARGET} ${wxWidgets_LIBRARIES} ${OTHER_LDFLAGS}) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
362 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";wxtest_physfs") |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
363 |
ELSE(wxWidgets_FOUND) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
364 |
MESSAGE(STATUS "wxWidgets not found. Disabling wx test app.") |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
365 |
SET(PHYSFS_BUILD_WX_TEST FALSE) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
366 |
ENDIF(wxWidgets_FOUND) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
367 |
ENDIF(PHYSFS_BUILD_WX_TEST) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
368 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
369 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
370 |
# Scripting language bindings... |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
371 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
372 |
#CMake's SWIG support is basically useless. |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
373 |
#FIND_PACKAGE(SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
374 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
375 |
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
|
376 |
IF(NOT SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
377 |
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
|
378 |
ELSE(NOT SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
379 |
MARK_AS_ADVANCED(SWIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
380 |
IF(DEFINED CMAKE_BUILD_TYPE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
381 |
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
|
382 |
IF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
383 |
SET(SWIG_OPT_CFLAGS "-small") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
384 |
ELSE(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
385 |
SET(SWIG_OPT_CFLAGS "-O") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
386 |
ENDIF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
387 |
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
|
388 |
ENDIF(DEFINED CMAKE_BUILD_TYPE) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
389 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
390 |
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
|
391 |
|
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
392 |
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
|
393 |
STRING(TOUPPER "${_LANG}" _UPPERLANG) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
394 |
STRING(TOLOWER "${_LANG}" _LOWERLANG) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
395 |
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
|
396 |
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
|
397 |
|
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
398 |
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
|
399 |
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
|
400 |
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
|
401 |
|
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
402 |
IF(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
403 |
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
|
404 |
OUTPUT "${_TARGETDIR}/${_TARGET}.c" ${_EXTRAOUTPUTS} |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
405 |
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
|
406 |
COMMAND "${SWIG}" |
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
407 |
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
|
408 |
COMMENT "Generating ${_LANG} bindings..." |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
409 |
) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
410 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
411 |
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
|
412 |
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
|
413 |
SET_TARGET_PROPERTIES(${_TARGET} PROPERTIES |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
414 |
COMPILE_FLAGS "${_EXTRACFLAGS}" |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
415 |
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
|
416 |
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
|
417 |
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
|
418 |
CLEAN_DIRECT_OUTPUT 1 |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
419 |
) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
420 |
INSTALL(TARGETS ${_TARGET} LIBRARY DESTINATION "${_INSTALLPATH}") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
421 |
MESSAGE(STATUS "${_LANG} bindings configured!") |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
422 |
ELSE(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
423 |
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
|
424 |
ENDIF(PHYSFS_BUILD_${_UPPERLANG}) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
425 |
ENDMACRO(CONFIGURE_SWIG_BINDING) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
426 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
427 |
MACRO(ADD_SCRIPT_BINDING_OPTION _VAR _LANG _DEFVAL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
428 |
OPTION(${_VAR} "Build ${_LANG} bindings." ${_DEFVAL}) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
429 |
MARK_AS_ADVANCED(${_VAR}) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
430 |
ENDMACRO(ADD_SCRIPT_BINDING_OPTION) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
431 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
432 |
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
|
433 |
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
|
434 |
ENDIF(NOT SWIG) |
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 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
437 |
MESSAGE(STATUS "Configuring Perl bindings...") |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
438 |
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
|
439 |
IF(NOT PERL) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
440 |
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
|
441 |
SET(PHYSFS_BUILD_PERL FALSE) |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
442 |
ENDIF(NOT PERL) |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
443 |
MARK_AS_ADVANCED(PERL) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
444 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
445 |
MACRO(GET_PERL_CONFIG _KEY _VALUE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
446 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
447 |
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
|
448 |
EXECUTE_PROCESS( |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
449 |
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
|
450 |
RESULT_VARIABLE GET_PERL_CONFIG_RC |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
451 |
OUTPUT_VARIABLE ${_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(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
|
454 |
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
|
455 |
SET(PHYSFS_BUILD_PERL FALSE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
456 |
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
|
457 |
IF(NOT ${_VALUE}) |
1033
c846b83628f4
Use FIND_PROGRAM(perl) instead of FindPerl.
Ryan C. Gordon <icculus@icculus.org>
parents:
1032
diff
changeset
|
458 |
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
|
459 |
SET(PHYSFS_BUILD_PERL FALSE) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
460 |
ENDIF(NOT ${_VALUE}) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
461 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
462 |
IF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
463 |
MESSAGE(STATUS "Perl says: '${${_VALUE}}'.") |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
464 |
ENDIF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
465 |
ENDIF(PHYSFS_BUILD_PERL) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
466 |
ENDMACRO(GET_PERL_CONFIG) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
467 |
|
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
468 |
# !!! 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
|
469 |
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
|
470 |
GET_PERL_CONFIG("ccflags" PERL_CCFLAGS) |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
471 |
GET_PERL_CONFIG("ldflags" PERL_LDFLAGS) |
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
472 |
GET_PERL_CONFIG("installsitearch" PERL_INSTALL_PATH) |
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
473 |
|
1037
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
474 |
# !!! FIXME: this test for Mac OS X is wrong. |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
475 |
IF(MACOSX) |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
476 |
GET_PERL_CONFIG("libperl" PERL_LIBPERL) |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
477 |
SET(TMPLIBPERL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
478 |
STRING(REGEX REPLACE "^lib" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
479 |
STRING(REGEX REPLACE "\\.so$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
480 |
STRING(REGEX REPLACE "\\.dylib$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
481 |
STRING(REGEX REPLACE "\\.dll$" "" TMPLIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
482 |
IF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
483 |
MESSAGE(STATUS "Stripped '${PERL_LIBPERL}' down to '${TMPLIBPERL}'.") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
484 |
SET(PERL_LIBPERL "${TMPLIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
485 |
ENDIF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
486 |
SET(PERL_LIBPERL "-l${PERL_LIBPERL}") |
d452f4da0970
More perl bindings wanking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1035
diff
changeset
|
487 |
ENDIF(MACOSX) |
1035
f6ca3f9af74c
More work on Perl bindings linking.
Ryan C. Gordon <icculus@icculus.org>
parents:
1034
diff
changeset
|
488 |
|
1038
16b7dedb02a5
Fixed filename collision when linking the library and script bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1037
diff
changeset
|
489 |
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
|
490 |
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
|
491 |
INSTALL( |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
492 |
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
|
493 |
DESTINATION bin |
c06cad5295c3
Install test_physfs.pl with the rest of the project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1042
diff
changeset
|
494 |
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
|
495 |
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
|
496 |
) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
497 |
ENDIF(PHYSFS_BUILD_PERL) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
498 |
|
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
499 |
# !!! 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
|
500 |
IF(PHYSFS_BUILD_RUBY) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
501 |
MESSAGE(STATUS "Configuring Ruby bindings...") |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
502 |
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
|
503 |
IF(NOT RUBY) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
504 |
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
|
505 |
SET(PHYSFS_BUILD_RUBY FALSE) |
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
506 |
ENDIF(NOT RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
507 |
MARK_AS_ADVANCED(RUBY) |
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 |
MACRO(GET_RUBY_CONFIG _KEY _VALUE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
510 |
IF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
511 |
MESSAGE(STATUS "Figuring out ruby config value '${_KEY}' ...") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
512 |
EXECUTE_PROCESS( |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
513 |
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
|
514 |
RESULT_VARIABLE GET_RUBY_CONFIG_RC |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
515 |
OUTPUT_VARIABLE ${_VALUE} |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
516 |
OUTPUT_STRIP_TRAILING_WHITESPACE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
517 |
) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
518 |
IF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
519 |
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
|
520 |
SET(PHYSFS_BUILD_RUBY FALSE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
521 |
ENDIF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
522 |
IF(NOT ${_VALUE}) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
523 |
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
|
524 |
SET(PHYSFS_BUILD_RUBY FALSE) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
525 |
ENDIF(NOT ${_VALUE}) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
526 |
|
1051
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
527 |
IF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
528 |
MESSAGE(STATUS "Ruby says: '${${_VALUE}}'.") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
529 |
ENDIF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
530 |
ENDIF(PHYSFS_BUILD_RUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
531 |
ENDMACRO(GET_RUBY_CONFIG) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
532 |
|
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
533 |
GET_RUBY_CONFIG("archdir" RUBY_INCLUDE_PATH) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
534 |
GET_RUBY_CONFIG("CFLAGS" RUBY_CCFLAGS) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
535 |
GET_RUBY_CONFIG("LDFLAGS" RUBY_LDFLAGS) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
536 |
GET_RUBY_CONFIG("sitearchdir" RUBY_INSTALL_PATH) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
537 |
GET_RUBY_CONFIG("LIBRUBYARG_SHARED" RUBY_LIBRUBY) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
538 |
GET_RUBY_CONFIG("libdir" RUBY_LIBDIR) |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
539 |
|
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
540 |
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
|
541 |
SET_TARGET_PROPERTIES(physfs-ruby PROPERTIES PREFIX "") |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
542 |
INSTALL( |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
543 |
FILES test/test_physfs.rb |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
544 |
DESTINATION bin |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
545 |
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
546 |
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
42fef01c55d6
Added SWIG-based Ruby bindings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1047
diff
changeset
|
547 |
) |
1032
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
548 |
ENDIF(PHYSFS_BUILD_RUBY) |
ea6aaadcfa04
Initial work on Ruby bindings, barely started.
Ryan C. Gordon <icculus@icculus.org>
parents:
1031
diff
changeset
|
549 |
|
1030
17c521170ba6
Hooked up Perl bindings, via SWIG.
Ryan C. Gordon <icculus@icculus.org>
parents:
1015
diff
changeset
|
550 |
|
804
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
551 |
INSTALL(TARGETS ${PHYSFS_INSTALL_TARGETS} |
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
552 |
RUNTIME DESTINATION bin |
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
553 |
LIBRARY DESTINATION lib |
45c29325e017
Added install targets for "make install"
Ryan C. Gordon <icculus@icculus.org>
parents:
803
diff
changeset
|
554 |
ARCHIVE DESTINATION lib) |
1015
7bd933e66d8d
Corrected physfs.h installation for new directory layout (thanks, Patrice!).
Ryan C. Gordon <icculus@icculus.org>
parents:
1009
diff
changeset
|
555 |
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
|
556 |
|
798 | 557 |
FIND_PACKAGE(Doxygen) |
558 |
IF(DOXYGEN_FOUND) |
|
559 |
ADD_CUSTOM_TARGET(docs ${DOXYGEN_EXECUTABLE} COMMENT "Building documentation") |
|
560 |
ELSE(DOXYGEN_FOUND) |
|
561 |
MESSAGE(STATUS "Doxygen not found. You won't be able to build documentation.") |
|
562 |
ENDIF(DOXYGEN_FOUND) |
|
563 |
||
885
e1fe7fe85939
Added a hack for "make dist" functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
878
diff
changeset
|
564 |
IF(UNIX) |
1042
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
565 |
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
|
566 |
ADD_CUSTOM_TARGET( |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
567 |
dist |
1042
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
568 |
hg archive -t tgz "${PHYSFS_TARBALL}" |
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
569 |
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" |
dc9291957a5a
Fixed "make dist" target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1041
diff
changeset
|
570 |
COMMENT "Building source tarball '${PHYSFS_TARBALL}'..." |
1041
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
571 |
) |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
572 |
ADD_CUSTOM_TARGET( |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
573 |
uninstall |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
574 |
"${CMAKE_CURRENT_SOURCE_DIR}/extras/uninstall.sh" |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
575 |
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
576 |
COMMENT "Uninstall the project..." |
f7b7996e54f1
Added uninstall target for Unix platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
1040
diff
changeset
|
577 |
) |
885
e1fe7fe85939
Added a hack for "make dist" functionality.
Ryan C. Gordon <icculus@icculus.org>
parents:
878
diff
changeset
|
578 |
ENDIF(UNIX) |
798 | 579 |
|
580 |
MACRO(MESSAGE_BOOL_OPTION _NAME _VALUE) |
|
581 |
IF(${_VALUE}) |
|
582 |
MESSAGE(STATUS " ${_NAME}: enabled") |
|
583 |
ELSE(${_VALUE}) |
|
584 |
MESSAGE(STATUS " ${_NAME}: disabled") |
|
585 |
ENDIF(${_VALUE}) |
|
586 |
ENDMACRO(MESSAGE_BOOL_OPTION) |
|
587 |
||
588 |
MESSAGE(STATUS "PhysicsFS will build with the following options:") |
|
589 |
MESSAGE_BOOL_OPTION("ZIP support" PHYSFS_ARCHIVE_ZIP) |
|
590 |
MESSAGE_BOOL_OPTION("7zip support" PHYSFS_ARCHIVE_7Z) |
|
591 |
MESSAGE_BOOL_OPTION("GRP support" PHYSFS_ARCHIVE_GRP) |
|
592 |
MESSAGE_BOOL_OPTION("WAD support" PHYSFS_ARCHIVE_WAD) |
|
593 |
MESSAGE_BOOL_OPTION("HOG support" PHYSFS_ARCHIVE_HOG) |
|
594 |
MESSAGE_BOOL_OPTION("MVL support" PHYSFS_ARCHIVE_MVL) |
|
595 |
MESSAGE_BOOL_OPTION("QPAK support" PHYSFS_ARCHIVE_QPAK) |
|
596 |
MESSAGE_BOOL_OPTION("CD-ROM drive support" PHYSFS_HAVE_CDROM_SUPPORT) |
|
597 |
MESSAGE_BOOL_OPTION("Thread safety" PHYSFS_HAVE_THREAD_SUPPORT) |
|
598 |
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
|
599 |
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
|
600 |
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
|
601 |
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
|
602 |
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
|
603 |
MESSAGE_BOOL_OPTION("Build wxWidgets test program" PHYSFS_BUILD_WX_TEST) |
6d65c5e0049a
Added initial work on a wxWidgets-based test app.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
604 |
MESSAGE_BOOL_OPTION("Build stdio test program" PHYSFS_BUILD_TEST) |
798 | 605 |
IF(PHYSFS_BUILD_TEST) |
606 |
MESSAGE_BOOL_OPTION(" Use readline in test program" HAVE_SYSTEM_READLINE) |
|
607 |
ENDIF(PHYSFS_BUILD_TEST) |
|
608 |
||
609 |
# end of CMakeLists.txt ... |
|
610 |