author | koda |
Sun, 09 Dec 2012 16:13:06 +0100 | |
changeset 8281 | a1577759bf62 |
parent 8146 | 1fba650c2aa4 |
child 8283 | af97cdbb7713 |
permissions | -rw-r--r-- |
7768 | 1 |
# PhysicsFS; a portable, flexible file i/o abstraction. |
2 |
# Copyright (C) 2007 Ryan C. Gordon. |
|
3 |
# |
|
4 |
# Please see the file LICENSE.txt in the source's root directory. |
|
5 |
||
8087
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8084
diff
changeset
|
6 |
#lines overridden by Hedgewars configuration |
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8084
diff
changeset
|
7 |
#CMAKE_MINIMUM_REQUIRED(VERSION 2.4) |
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8084
diff
changeset
|
8 |
#PROJECT(PhysicsFS) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
9 |
SET(PHYSFS_VERSION 2.1.0) |
7768 | 10 |
|
11 |
# Increment this if/when we break backwards compatibility. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
12 |
SET(PHYSFS_SOVERSION 1) |
7768 | 13 |
|
14 |
# I hate that they define "WIN32" ... we're about to move to Win64...I hope! |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
15 |
IF(WIN32 AND NOT WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
16 |
SET(WINDOWS TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
17 |
ENDIF(WIN32 AND NOT WINDOWS) |
7768 | 18 |
|
19 |
# Bleh, let's do it for "APPLE" too. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
20 |
IF(APPLE AND NOT MACOSX) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
21 |
SET(MACOSX TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
22 |
ENDIF(APPLE AND NOT MACOSX) |
7768 | 23 |
|
24 |
# For now, Haiku and BeOS are the same, as far as the build system cares. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
25 |
IF(HAIKU AND NOT BEOS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
26 |
SET(BEOS TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
27 |
ENDIF(HAIKU AND NOT BEOS) |
7768 | 28 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
29 |
IF(CMAKE_SYSTEM_NAME STREQUAL "SunOS") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
30 |
SET(SOLARIS TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
31 |
ENDIF(CMAKE_SYSTEM_NAME STREQUAL "SunOS") |
7768 | 32 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
33 |
INCLUDE(CheckIncludeFile) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
34 |
INCLUDE(CheckLibraryExists) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
35 |
INCLUDE(CheckCSourceCompiles) |
7768 | 36 |
|
8073 | 37 |
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src) |
38 |
include_directories(${SDL_INCLUDE_DIR}) #hw |
|
39 |
include_directories(${LUA_INCLUDE_DIR}) #hw |
|
7768 | 40 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
41 |
IF(MACOSX) |
7768 | 42 |
# Fallback to older OS X on PowerPC to support wider range of systems... |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
43 |
IF(CMAKE_OSX_ARCHITECTURES MATCHES ppc) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
44 |
ADD_DEFINITIONS(-DMAC_OS_X_VERSION_MIN_REQUIRED=1020) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
45 |
SET(OTHER_LDFLAGS ${OTHER_LDFLAGS} " -mmacosx-version-min=10.2") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
46 |
ENDIF(CMAKE_OSX_ARCHITECTURES MATCHES ppc) |
7768 | 47 |
|
48 |
# Need these everywhere... |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
49 |
ADD_DEFINITIONS(-fno-common) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
50 |
SET(OTHER_LDFLAGS ${OTHER_LDFLAGS} "-framework IOKit") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
51 |
ENDIF(MACOSX) |
7768 | 52 |
|
53 |
# Add some gcc-specific command lines. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
54 |
IF(CMAKE_COMPILER_IS_GNUCC) |
7768 | 55 |
# Always build with debug symbols...you can strip it later. |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
56 |
ADD_DEFINITIONS(-g -pipe -Werror -fsigned-char) |
7768 | 57 |
|
58 |
# Stupid BeOS generates warnings in the system headers. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
59 |
IF(NOT BEOS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
60 |
ADD_DEFINITIONS(-Wall) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
61 |
ENDIF(NOT BEOS) |
7768 | 62 |
|
63 |
CHECK_C_SOURCE_COMPILES(" |
|
64 |
#if ((defined(__GNUC__)) && (__GNUC__ >= 4)) |
|
65 |
int main(int argc, char **argv) { int is_gcc4 = 1; return 0; } |
|
66 |
#else |
|
67 |
#error This is not gcc4. |
|
68 |
#endif |
|
69 |
" PHYSFS_IS_GCC4) |
|
70 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
71 |
IF(PHYSFS_IS_GCC4) |
7768 | 72 |
# Not supported on several operating systems at this time. |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
73 |
IF(NOT SOLARIS AND NOT WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
74 |
ADD_DEFINITIONS(-fvisibility=hidden) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
75 |
ENDIF(NOT SOLARIS AND NOT WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
76 |
ENDIF(PHYSFS_IS_GCC4) |
7768 | 77 |
|
78 |
# Don't use -rpath. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
79 |
SET(CMAKE_SKIP_RPATH ON CACHE BOOL "Skip RPATH" FORCE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
80 |
ENDIF(CMAKE_COMPILER_IS_GNUCC) |
7768 | 81 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
82 |
IF(CMAKE_C_COMPILER_ID STREQUAL "SunPro") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
83 |
ADD_DEFINITIONS(-erroff=E_EMPTY_TRANSLATION_UNIT) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
84 |
ADD_DEFINITIONS(-xldscope=hidden) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
85 |
ENDIF(CMAKE_C_COMPILER_ID STREQUAL "SunPro") |
7768 | 86 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
87 |
IF(MSVC) |
7768 | 88 |
# VS.NET 8.0 got really really anal about strcpy, etc, which even if we |
89 |
# cleaned up our code, zlib, etc still use...so disable the warning. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
90 |
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
91 |
ENDIF(MSVC) |
7768 | 92 |
|
93 |
# Basic chunks of source code ... |
|
94 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
95 |
SET(LZMA_SRCS |
7768 | 96 |
src/lzma/C/7zCrc.c |
97 |
src/lzma/C/Archive/7z/7zBuffer.c |
|
98 |
src/lzma/C/Archive/7z/7zDecode.c |
|
99 |
src/lzma/C/Archive/7z/7zExtract.c |
|
100 |
src/lzma/C/Archive/7z/7zHeader.c |
|
101 |
src/lzma/C/Archive/7z/7zIn.c |
|
102 |
src/lzma/C/Archive/7z/7zItem.c |
|
103 |
src/lzma/C/Archive/7z/7zMethodID.c |
|
104 |
src/lzma/C/Compress/Branch/BranchX86.c |
|
105 |
src/lzma/C/Compress/Branch/BranchX86_2.c |
|
106 |
src/lzma/C/Compress/Lzma/LzmaDecode.c |
|
107 |
) |
|
108 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
109 |
IF(BEOS) |
7768 | 110 |
# We add this explicitly, since we don't want CMake to think this |
111 |
# is a C++ project unless we're on BeOS. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
112 |
SET(PHYSFS_BEOS_SRCS src/platform_beos.cpp) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
113 |
FIND_LIBRARY(BE_LIBRARY be) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
114 |
FIND_LIBRARY(ROOT_LIBRARY root) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
115 |
SET(OPTIONAL_LIBRARY_LIBS ${OPTIONAL_LIBRARY_LIBS} ${BE_LIBRARY} ${ROOT_LIBRARY}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
116 |
ENDIF(BEOS) |
7768 | 117 |
|
118 |
# Almost everything is "compiled" here, but things that don't apply to the |
|
119 |
# build are #ifdef'd out. This is to make it easy to embed PhysicsFS into |
|
120 |
# another project or bring up a new build system: just compile all the source |
|
121 |
# code and #define the things you want. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
122 |
SET(PHYSFS_SRCS |
7768 | 123 |
src/physfs.c |
124 |
src/physfs_byteorder.c |
|
125 |
src/physfs_unicode.c |
|
126 |
src/platform_posix.c |
|
127 |
src/platform_unix.c |
|
128 |
src/platform_macosx.c |
|
129 |
src/platform_windows.c |
|
130 |
src/archiver_dir.c |
|
131 |
src/archiver_unpacked.c |
|
132 |
src/archiver_grp.c |
|
133 |
src/archiver_hog.c |
|
134 |
src/archiver_lzma.c |
|
135 |
src/archiver_mvl.c |
|
136 |
src/archiver_qpak.c |
|
137 |
src/archiver_wad.c |
|
138 |
src/archiver_zip.c |
|
139 |
src/archiver_iso9660.c |
|
8073 | 140 |
#custom files from Hedgewars |
141 |
extras/physfsrwops.c |
|
142 |
extras/physfslualoader.c |
|
143 |
extras/hwpacksmounter.c |
|
7768 | 144 |
${PHYSFS_BEOS_SRCS} |
145 |
) |
|
146 |
||
147 |
||
148 |
# platform layers ... |
|
149 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
150 |
IF(UNIX) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
151 |
IF(BEOS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
152 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
153 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
154 |
SET(HAVE_PTHREAD_H TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
155 |
ELSE(BEOS) |
7768 | 156 |
CHECK_INCLUDE_FILE(sys/ucred.h HAVE_UCRED_H) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
157 |
IF(HAVE_UCRED_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
158 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_SYS_UCRED_H=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
159 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
160 |
ENDIF(HAVE_UCRED_H) |
7768 | 161 |
|
162 |
CHECK_INCLUDE_FILE(mntent.h HAVE_MNTENT_H) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
163 |
IF(HAVE_MNTENT_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
164 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_MNTENT_H=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
165 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
166 |
ENDIF(HAVE_MNTENT_H) |
7768 | 167 |
|
168 |
# !!! FIXME: Solaris fails this, because mnttab.h implicitly |
|
169 |
# !!! FIXME: depends on other system headers. :( |
|
170 |
#CHECK_INCLUDE_FILE(sys/mnttab.h HAVE_SYS_MNTTAB_H) |
|
171 |
CHECK_C_SOURCE_COMPILES(" |
|
172 |
#include <stdio.h> |
|
173 |
#include <sys/mnttab.h> |
|
174 |
int main(int argc, char **argv) { return 0; } |
|
175 |
" HAVE_SYS_MNTTAB_H) |
|
176 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
177 |
IF(HAVE_SYS_MNTTAB_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
178 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_SYS_MNTTAB_H=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
179 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
180 |
ENDIF(HAVE_SYS_MNTTAB_H) |
7768 | 181 |
|
182 |
CHECK_INCLUDE_FILE(pthread.h HAVE_PTHREAD_H) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
183 |
IF(HAVE_PTHREAD_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
184 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
185 |
ENDIF(HAVE_PTHREAD_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
186 |
ENDIF(BEOS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
187 |
ENDIF(UNIX) |
7768 | 188 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
189 |
IF(WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
190 |
SET(PHYSFS_HAVE_CDROM_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
191 |
SET(PHYSFS_HAVE_THREAD_SUPPORT TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
192 |
ENDIF(WINDOWS) |
7768 | 193 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
194 |
IF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
195 |
ADD_DEFINITIONS(-DPHYSFS_NO_CDROM_SUPPORT=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
196 |
MESSAGE(WARNING " ***") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
197 |
MESSAGE(WARNING " *** There is no CD-ROM support in this build!") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
198 |
MESSAGE(WARNING " *** PhysicsFS will just pretend there are no discs.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
199 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
200 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
201 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
202 |
MESSAGE(WARNING " ***") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
203 |
ENDIF(NOT PHYSFS_HAVE_CDROM_SUPPORT) |
7768 | 204 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
205 |
IF(PHYSFS_HAVE_THREAD_SUPPORT) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
206 |
ADD_DEFINITIONS(-D_REENTRANT -D_THREAD_SAFE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
207 |
ELSE(PHYSFS_HAVE_THREAD_SUPPORT) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
208 |
ADD_DEFINITIONS(-DPHYSFS_NO_THREAD_SUPPORT=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
209 |
MESSAGE(WARNING " ***") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
210 |
MESSAGE(WARNING " *** There is no thread support in this build!") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
211 |
MESSAGE(WARNING " *** PhysicsFS will NOT be reentrant!") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
212 |
MESSAGE(WARNING " *** This may be fine, depending on how PhysicsFS is used,") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
213 |
MESSAGE(WARNING " *** but is this what you REALLY wanted?") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
214 |
MESSAGE(WARNING " *** (Maybe fix CMakeLists.txt, or write a platform driver?)") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
215 |
MESSAGE(WARNING " ***") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
216 |
ENDIF(PHYSFS_HAVE_THREAD_SUPPORT) |
7768 | 217 |
|
218 |
||
219 |
# Archivers ... |
|
220 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
221 |
OPTION(PHYSFS_ARCHIVE_ZIP "Enable ZIP support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
222 |
IF(PHYSFS_ARCHIVE_ZIP) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
223 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ZIP=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
224 |
ENDIF(PHYSFS_ARCHIVE_ZIP) |
7768 | 225 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
226 |
OPTION(PHYSFS_ARCHIVE_7Z "Enable 7zip support" FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
227 |
IF(PHYSFS_ARCHIVE_7Z) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
228 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_7Z=1) |
7768 | 229 |
# !!! FIXME: rename to 7z.c? |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
230 |
SET(PHYSFS_SRCS ${PHYSFS_SRCS} ${LZMA_SRCS}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
231 |
ENDIF(PHYSFS_ARCHIVE_7Z) |
7768 | 232 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
233 |
OPTION(PHYSFS_ARCHIVE_GRP "Enable Build Engine GRP support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
234 |
IF(PHYSFS_ARCHIVE_GRP) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
235 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_GRP=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
236 |
ENDIF(PHYSFS_ARCHIVE_GRP) |
7768 | 237 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
238 |
OPTION(PHYSFS_ARCHIVE_WAD "Enable Doom WAD support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
239 |
IF(PHYSFS_ARCHIVE_WAD) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
240 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_WAD=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
241 |
ENDIF(PHYSFS_ARCHIVE_WAD) |
7768 | 242 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
243 |
OPTION(PHYSFS_ARCHIVE_HOG "Enable Descent I/II HOG support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
244 |
IF(PHYSFS_ARCHIVE_HOG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
245 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_HOG=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
246 |
ENDIF(PHYSFS_ARCHIVE_HOG) |
7768 | 247 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
248 |
OPTION(PHYSFS_ARCHIVE_MVL "Enable Descent I/II MVL support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
249 |
IF(PHYSFS_ARCHIVE_MVL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
250 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_MVL=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
251 |
ENDIF(PHYSFS_ARCHIVE_MVL) |
7768 | 252 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
253 |
OPTION(PHYSFS_ARCHIVE_QPAK "Enable Quake I/II QPAK support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
254 |
IF(PHYSFS_ARCHIVE_QPAK) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
255 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_QPAK=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
256 |
ENDIF(PHYSFS_ARCHIVE_QPAK) |
7768 | 257 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
258 |
OPTION(PHYSFS_ARCHIVE_ISO9660 "Enable ISO9660 support" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
259 |
IF(PHYSFS_ARCHIVE_ISO9660) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
260 |
ADD_DEFINITIONS(-DPHYSFS_SUPPORTS_ISO9660=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
261 |
ENDIF(PHYSFS_ARCHIVE_ISO9660) |
7768 | 262 |
|
8087
ccc99eebdac2
little cmake cleanup, search installed modules first, then our own
koda
parents:
8084
diff
changeset
|
263 |
#as needed by Hedgewars configuration |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
264 |
IF(WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
265 |
OPTION(PHYSFS_BUILD_STATIC "Build static library" FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
266 |
OPTION(PHYSFS_BUILD_SHARED "Build shared library" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
267 |
SET(OTHER_LDFLAGS ${OTHER_LDFLAGS} ${SDL_LIBRARY}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
268 |
ELSE(WINDOWS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
269 |
OPTION(PHYSFS_BUILD_STATIC "Build static library" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
270 |
OPTION(PHYSFS_BUILD_SHARED "Build shared library" FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
271 |
ENDIF(WINDOWS) |
7768 | 272 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
273 |
IF(PHYSFS_BUILD_STATIC) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
274 |
ADD_LIBRARY(physfs STATIC ${PHYSFS_SRCS}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
275 |
SET_TARGET_PROPERTIES(physfs PROPERTIES OUTPUT_NAME "physfs") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
276 |
SET(PHYSFS_LIB_TARGET physfs) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
277 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
278 |
ENDIF(PHYSFS_BUILD_STATIC) |
7768 | 279 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
280 |
IF(PHYSFS_BUILD_SHARED) |
8073 | 281 |
find_package(SDL REQUIRED) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
282 |
ADD_LIBRARY(physfs SHARED ${PHYSFS_SRCS}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
283 |
SET_TARGET_PROPERTIES(physfs PROPERTIES VERSION ${PHYSFS_VERSION}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
284 |
SET_TARGET_PROPERTIES(physfs PROPERTIES SOVERSION ${PHYSFS_SOVERSION}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
285 |
TARGET_LINK_LIBRARIES(physfs ${OPTIONAL_LIBRARY_LIBS} ${OTHER_LDFLAGS}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
286 |
SET(PHYSFS_LIB_TARGET physfs) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
287 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";physfs") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
288 |
INSTALL(TARGETS ${PHYSFS_INSTALL_TARGETS} |
8101 | 289 |
RUNTIME DESTINATION bin) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
290 |
ENDIF(PHYSFS_BUILD_SHARED) |
7768 | 291 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
292 |
IF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
293 |
MESSAGE(FATAL "Both shared and static libraries are disabled!") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
294 |
ENDIF(NOT PHYSFS_BUILD_SHARED AND NOT PHYSFS_BUILD_STATIC) |
7768 | 295 |
|
296 |
# CMake FAQ says I need this... |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
297 |
IF(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
298 |
SET_TARGET_PROPERTIES(physfs PROPERTIES CLEAN_DIRECT_OUTPUT 1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
299 |
ENDIF(PHYSFS_BUILD_SHARED AND PHYSFS_BUILD_STATIC) |
7768 | 300 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
301 |
OPTION(PHYSFS_BUILD_TEST "Build stdio test program." FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
302 |
MARK_AS_ADVANCED(PHYSFS_BUILD_TEST) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
303 |
IF(PHYSFS_BUILD_TEST) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
304 |
FIND_PATH(READLINE_H readline/readline.h) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
305 |
FIND_PATH(HISTORY_H readline/history.h) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
306 |
IF(READLINE_H AND HISTORY_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
307 |
FIND_LIBRARY(CURSES_LIBRARY NAMES curses ncurses) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
308 |
SET(CMAKE_REQUIRED_LIBRARIES ${CURSES_LIBRARY}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
309 |
FIND_LIBRARY(READLINE_LIBRARY readline) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
310 |
IF(READLINE_LIBRARY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
311 |
SET(HAVE_SYSTEM_READLINE TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
312 |
SET(TEST_PHYSFS_LIBS ${TEST_PHYSFS_LIBS} ${READLINE_LIBRARY} ${CURSES_LIBRARY}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
313 |
INCLUDE_DIRECTORIES(${READLINE_H} ${HISTORY_H}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
314 |
ADD_DEFINITIONS(-DPHYSFS_HAVE_READLINE=1) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
315 |
ENDIF(READLINE_LIBRARY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
316 |
ENDIF(READLINE_H AND HISTORY_H) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
317 |
ADD_EXECUTABLE(test_physfs test/test_physfs.c) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
318 |
TARGET_LINK_LIBRARIES(test_physfs ${PHYSFS_LIB_TARGET} ${TEST_PHYSFS_LIBS} ${OTHER_LDFLAGS}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
319 |
SET(PHYSFS_INSTALL_TARGETS ${PHYSFS_INSTALL_TARGETS} ";test_physfs") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
320 |
ENDIF(PHYSFS_BUILD_TEST) |
7768 | 321 |
|
322 |
||
323 |
# Scripting language bindings... |
|
324 |
||
325 |
#CMake's SWIG support is basically useless. |
|
326 |
#FIND_PACKAGE(SWIG) |
|
327 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
328 |
OPTION(PHYSFS_BUILD_SWIG "Build ${_LANG} bindings." FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
329 |
MARK_AS_ADVANCED(PHYSFS_BUILD_SWIG) |
7768 | 330 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
331 |
FIND_PROGRAM(SWIG swig DOC "Path to swig command line app: http://swig.org/") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
332 |
IF(NOT SWIG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
333 |
MESSAGE(STATUS "SWIG not found. You won't be able to build scripting language bindings.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
334 |
ELSE(NOT SWIG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
335 |
MARK_AS_ADVANCED(SWIG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
336 |
IF(DEFINED CMAKE_BUILD_TYPE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
337 |
IF((NOT CMAKE_BUILD_TYPE STREQUAL "") AND (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
338 |
IF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
339 |
SET(SWIG_OPT_CFLAGS "-small") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
340 |
ELSE(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
341 |
SET(SWIG_OPT_CFLAGS "-O") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
342 |
ENDIF(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
343 |
ENDIF((NOT CMAKE_BUILD_TYPE STREQUAL "") AND (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
344 |
ENDIF(DEFINED CMAKE_BUILD_TYPE) |
7768 | 345 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
346 |
SET(SWIG_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/physfs-swig-bindings") |
7768 | 347 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
348 |
MACRO(CONFIGURE_SWIG_BINDING _LANG _INSTALLPATH _EXTRAOUTPUTS _EXTRACFLAGS _EXTRALDFLAGS) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
349 |
STRING(TOUPPER "${_LANG}" _UPPERLANG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
350 |
STRING(TOLOWER "${_LANG}" _LOWERLANG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
351 |
SET(_TARGET "physfs-${_LOWERLANG}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
352 |
SET(_TARGETDIR "${SWIG_OUTPUT_DIR}/${_LOWERLANG}") |
7768 | 353 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
354 |
IF(NOT EXISTS "${_TARGETDIR}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
355 |
FILE(MAKE_DIRECTORY "${_TARGETDIR}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
356 |
ENDIF(NOT EXISTS "${_TARGETDIR}") |
7768 | 357 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
358 |
IF(PHYSFS_BUILD_${_UPPERLANG}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
359 |
ADD_CUSTOM_COMMAND( |
7768 | 360 |
OUTPUT "${_TARGETDIR}/${_TARGET}.c" ${_EXTRAOUTPUTS} |
361 |
MAIN_DEPENDENCY "${CMAKE_CURRENT_SOURCE_DIR}/extras/physfs-swig.i" |
|
362 |
COMMAND "${SWIG}" |
|
363 |
ARGS ${SWIG_OPT_CFLAGS} -${_LOWERLANG} -outdir "${_TARGETDIR}" -o "${_TARGETDIR}/${_TARGET}.c" "${CMAKE_CURRENT_SOURCE_DIR}/extras/physfs-swig.i" |
|
364 |
COMMENT "Generating ${_LANG} bindings..." |
|
365 |
) |
|
366 |
||
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
367 |
ADD_LIBRARY(${_TARGET} SHARED "${_TARGETDIR}/${_TARGET}.c") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
368 |
TARGET_LINK_LIBRARIES(${_TARGET} ${PHYSFS_LIB_TARGET}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
369 |
SET_TARGET_PROPERTIES(${_TARGET} PROPERTIES |
7768 | 370 |
COMPILE_FLAGS "${_EXTRACFLAGS}" |
371 |
LINK_FLAGS "${_EXTRALDFLAGS}" |
|
372 |
LIBRARY_OUTPUT_NAME "physfs" |
|
373 |
LIBRARY_OUTPUT_DIRECTORY "${_TARGETDIR}" |
|
374 |
CLEAN_DIRECT_OUTPUT 1 |
|
375 |
) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
376 |
INSTALL(TARGETS ${_TARGET} LIBRARY DESTINATION "${_INSTALLPATH}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
377 |
MESSAGE(STATUS "${_LANG} bindings configured!") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
378 |
ELSE(PHYSFS_BUILD_${_UPPERLANG}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
379 |
MESSAGE(STATUS "Couldn't figure out ${_LANG} configuration. Skipping ${_LANG} bindings.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
380 |
ENDIF(PHYSFS_BUILD_${_UPPERLANG}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
381 |
ENDMACRO(CONFIGURE_SWIG_BINDING) |
7768 | 382 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
383 |
MACRO(ADD_SCRIPT_BINDING_OPTION _VAR _LANG _DEFVAL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
384 |
SET(BUILDSWIGVAL ${_DEFVAL}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
385 |
IF(NOT PHYSFS_BUILD_SWIG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
386 |
SET(BUILDSWIGVAL FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
387 |
ENDIF(NOT PHYSFS_BUILD_SWIG) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
388 |
OPTION(${_VAR} "Build ${_LANG} bindings." ${BUILDSWIGVAL}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
389 |
MARK_AS_ADVANCED(${_VAR}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
390 |
ENDMACRO(ADD_SCRIPT_BINDING_OPTION) |
7768 | 391 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
392 |
ADD_SCRIPT_BINDING_OPTION(PHYSFS_BUILD_PERL "Perl" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
393 |
ADD_SCRIPT_BINDING_OPTION(PHYSFS_BUILD_RUBY "Ruby" TRUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
394 |
ENDIF(NOT SWIG) |
7768 | 395 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
396 |
IF(PHYSFS_BUILD_PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
397 |
MESSAGE(STATUS "Configuring Perl bindings...") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
398 |
FIND_PROGRAM(PERL perl DOC "Path to perl command line app: http://perl.org/") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
399 |
IF(NOT PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
400 |
MESSAGE(STATUS "Perl not found. You won't be able to build perl bindings.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
401 |
SET(PHYSFS_BUILD_PERL FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
402 |
ENDIF(NOT PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
403 |
MARK_AS_ADVANCED(PERL) |
7768 | 404 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
405 |
MACRO(GET_PERL_CONFIG _KEY _VALUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
406 |
IF(PHYSFS_BUILD_PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
407 |
MESSAGE(STATUS "Figuring out perl config value '${_KEY}' ...") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
408 |
EXECUTE_PROCESS( |
7768 | 409 |
COMMAND ${PERL} -w -e "use Config; print \$Config{${_KEY}};" |
410 |
RESULT_VARIABLE GET_PERL_CONFIG_RC |
|
411 |
OUTPUT_VARIABLE ${_VALUE} |
|
412 |
) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
413 |
IF(NOT GET_PERL_CONFIG_RC EQUAL 0) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
414 |
MESSAGE(STATUS "Perl executable ('${PERL}') reported failure: ${GET_PERL_CONFIG_RC}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
415 |
SET(PHYSFS_BUILD_PERL FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
416 |
ENDIF(NOT GET_PERL_CONFIG_RC EQUAL 0) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
417 |
IF(NOT ${_VALUE}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
418 |
MESSAGE(STATUS "Perl executable ('${PERL}') didn't have a value for '${_KEY}'") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
419 |
SET(PHYSFS_BUILD_PERL FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
420 |
ENDIF(NOT ${_VALUE}) |
7768 | 421 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
422 |
IF(PHYSFS_BUILD_PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
423 |
MESSAGE(STATUS "Perl says: '${${_VALUE}}'.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
424 |
ENDIF(PHYSFS_BUILD_PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
425 |
ENDIF(PHYSFS_BUILD_PERL) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
426 |
ENDMACRO(GET_PERL_CONFIG) |
7768 | 427 |
|
428 |
# !!! FIXME: installsitearch might be the wrong location. |
|
429 |
GET_PERL_CONFIG("archlibexp" PERL_INCLUDE_PATH) |
|
430 |
GET_PERL_CONFIG("ccflags" PERL_CCFLAGS) |
|
431 |
GET_PERL_CONFIG("ldflags" PERL_LDFLAGS) |
|
432 |
GET_PERL_CONFIG("installsitearch" PERL_INSTALL_PATH) |
|
433 |
||
434 |
# !!! FIXME: this test for Mac OS X is wrong. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
435 |
IF(MACOSX) |
7768 | 436 |
GET_PERL_CONFIG("libperl" PERL_LIBPERL) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
437 |
SET(TMPLIBPERL "${PERL_LIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
438 |
STRING(REGEX REPLACE "^lib" "" TMPLIBPERL "${TMPLIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
439 |
STRING(REGEX REPLACE "\\.so$" "" TMPLIBPERL "${TMPLIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
440 |
STRING(REGEX REPLACE "\\.dylib$" "" TMPLIBPERL "${TMPLIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
441 |
STRING(REGEX REPLACE "\\.dll$" "" TMPLIBPERL "${TMPLIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
442 |
IF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
443 |
MESSAGE(STATUS "Stripped '${PERL_LIBPERL}' down to '${TMPLIBPERL}'.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
444 |
SET(PERL_LIBPERL "${TMPLIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
445 |
ENDIF(NOT "${TMPLIBPERL}" STREQUAL "${PERL_LIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
446 |
SET(PERL_LIBPERL "-l${PERL_LIBPERL}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
447 |
ENDIF(MACOSX) |
7768 | 448 |
|
449 |
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}") |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
450 |
INSTALL(FILES "${SWIG_OUTPUT_DIR}/perl/physfs.pm" DESTINATION "${PERL_INSTALL_PATH}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
451 |
INSTALL( |
7768 | 452 |
FILES test/test_physfs.pl |
453 |
DESTINATION bin |
|
454 |
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE |
|
455 |
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
|
456 |
) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
457 |
ENDIF(PHYSFS_BUILD_PERL) |
7768 | 458 |
|
459 |
# !!! FIXME: lots of cut-and-paste from perl bindings. |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
460 |
IF(PHYSFS_BUILD_RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
461 |
MESSAGE(STATUS "Configuring Ruby bindings...") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
462 |
FIND_PROGRAM(RUBY ruby DOC "Path to ruby command line app: http://ruby-lang.org/") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
463 |
IF(NOT RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
464 |
MESSAGE(STATUS "Ruby not found. You won't be able to build ruby bindings.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
465 |
SET(PHYSFS_BUILD_RUBY FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
466 |
ENDIF(NOT RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
467 |
MARK_AS_ADVANCED(RUBY) |
7768 | 468 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
469 |
MACRO(GET_RUBY_CONFIG _KEY _VALUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
470 |
IF(PHYSFS_BUILD_RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
471 |
MESSAGE(STATUS "Figuring out ruby config value '${_KEY}' ...") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
472 |
EXECUTE_PROCESS( |
7768 | 473 |
COMMAND ${RUBY} -e "require 'rbconfig'; puts RbConfig::CONFIG['${_KEY}'];" |
474 |
RESULT_VARIABLE GET_RUBY_CONFIG_RC |
|
475 |
OUTPUT_VARIABLE ${_VALUE} |
|
476 |
OUTPUT_STRIP_TRAILING_WHITESPACE |
|
477 |
) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
478 |
IF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
479 |
MESSAGE(STATUS "Ruby executable ('${RUBY}') reported failure: ${GET_RUBY_CONFIG_RC}") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
480 |
SET(PHYSFS_BUILD_RUBY FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
481 |
ENDIF(NOT GET_RUBY_CONFIG_RC EQUAL 0) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
482 |
IF(NOT ${_VALUE}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
483 |
MESSAGE(STATUS "Ruby executable ('${RUBY}') didn't have a value for '${_KEY}'") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
484 |
SET(PHYSFS_BUILD_RUBY FALSE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
485 |
ENDIF(NOT ${_VALUE}) |
7768 | 486 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
487 |
IF(PHYSFS_BUILD_RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
488 |
MESSAGE(STATUS "Ruby says: '${${_VALUE}}'.") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
489 |
ENDIF(PHYSFS_BUILD_RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
490 |
ENDIF(PHYSFS_BUILD_RUBY) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
491 |
ENDMACRO(GET_RUBY_CONFIG) |
7768 | 492 |
|
493 |
GET_RUBY_CONFIG("archdir" RUBY_INCLUDE_PATH) |
|
494 |
GET_RUBY_CONFIG("CFLAGS" RUBY_CCFLAGS) |
|
495 |
GET_RUBY_CONFIG("LDFLAGS" RUBY_LDFLAGS) |
|
496 |
GET_RUBY_CONFIG("sitearchdir" RUBY_INSTALL_PATH) |
|
497 |
GET_RUBY_CONFIG("LIBRUBYARG_SHARED" RUBY_LIBRUBY) |
|
498 |
GET_RUBY_CONFIG("libdir" RUBY_LIBDIR) |
|
499 |
||
500 |
CONFIGURE_SWIG_BINDING(Ruby "${RUBY_INSTALL_PATH}" "" "\"-I${RUBY_INCLUDE_PATH}\" ${RUBY_CCFLAGS} -w" "\"-L${RUBY_LIBDIR}\" ${RUBY_LIBRUBY} ${RUBY_LDFLAGS}") |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
501 |
SET_TARGET_PROPERTIES(physfs-ruby PROPERTIES PREFIX "") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
502 |
INSTALL( |
7768 | 503 |
FILES test/test_physfs.rb |
504 |
DESTINATION bin |
|
505 |
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE |
|
506 |
GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
|
507 |
) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
508 |
ENDIF(PHYSFS_BUILD_RUBY) |
7768 | 509 |
|
510 |
||
8084 | 511 |
#INSTALL(TARGETS ${PHYSFS_INSTALL_TARGETS} |
512 |
# RUNTIME DESTINATION bin |
|
513 |
# LIBRARY DESTINATION lib${LIB_SUFFIX} |
|
514 |
# ARCHIVE DESTINATION lib${LIB_SUFFIX}) |
|
515 |
#INSTALL(FILES src/physfs.h DESTINATION include) |
|
7768 | 516 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
517 |
IF(UNIX) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
518 |
SET(PHYSFS_TARBALL "${CMAKE_CURRENT_SOURCE_DIR}/../physfs-${PHYSFS_VERSION}.tar.gz") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
519 |
ADD_CUSTOM_TARGET( |
7768 | 520 |
dist |
521 |
hg archive -t tgz "${PHYSFS_TARBALL}" |
|
522 |
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" |
|
523 |
COMMENT "Building source tarball '${PHYSFS_TARBALL}'..." |
|
524 |
) |
|
7778 | 525 |
# ADD_CUSTOM_TARGET( |
526 |
# uninstall |
|
527 |
# "${CMAKE_CURRENT_SOURCE_DIR}/extras/uninstall.sh" |
|
528 |
# WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" |
|
529 |
# COMMENT "Uninstall the project..." |
|
530 |
# ) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
531 |
ENDIF(UNIX) |
7768 | 532 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
533 |
MACRO(MESSAGE_BOOL_OPTION _NAME _VALUE) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
534 |
IF(${_VALUE}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
535 |
MESSAGE(STATUS " ${_NAME}: enabled") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
536 |
ELSE(${_VALUE}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
537 |
MESSAGE(STATUS " ${_NAME}: disabled") |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
538 |
ENDIF(${_VALUE}) |
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
539 |
ENDMACRO(MESSAGE_BOOL_OPTION) |
7768 | 540 |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
541 |
MESSAGE(STATUS "PhysicsFS will build with the following options:") |
7768 | 542 |
MESSAGE_BOOL_OPTION("ZIP support" PHYSFS_ARCHIVE_ZIP) |
543 |
MESSAGE_BOOL_OPTION("7zip support" PHYSFS_ARCHIVE_7Z) |
|
544 |
MESSAGE_BOOL_OPTION("GRP support" PHYSFS_ARCHIVE_GRP) |
|
545 |
MESSAGE_BOOL_OPTION("WAD support" PHYSFS_ARCHIVE_WAD) |
|
546 |
MESSAGE_BOOL_OPTION("HOG support" PHYSFS_ARCHIVE_HOG) |
|
547 |
MESSAGE_BOOL_OPTION("MVL support" PHYSFS_ARCHIVE_MVL) |
|
548 |
MESSAGE_BOOL_OPTION("QPAK support" PHYSFS_ARCHIVE_QPAK) |
|
549 |
MESSAGE_BOOL_OPTION("CD-ROM drive support" PHYSFS_HAVE_CDROM_SUPPORT) |
|
550 |
MESSAGE_BOOL_OPTION("Thread safety" PHYSFS_HAVE_THREAD_SUPPORT) |
|
551 |
MESSAGE_BOOL_OPTION("Build static library" PHYSFS_BUILD_STATIC) |
|
552 |
MESSAGE_BOOL_OPTION("Build shared library" PHYSFS_BUILD_SHARED) |
|
553 |
MESSAGE_BOOL_OPTION("Build Perl bindings" PHYSFS_BUILD_PERL) |
|
554 |
MESSAGE_BOOL_OPTION("Build Ruby bindings" PHYSFS_BUILD_RUBY) |
|
555 |
MESSAGE_BOOL_OPTION("Build stdio test program" PHYSFS_BUILD_TEST) |
|
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
556 |
IF(PHYSFS_BUILD_TEST) |
7768 | 557 |
MESSAGE_BOOL_OPTION(" Use readline in test program" HAVE_SYSTEM_READLINE) |
8281
a1577759bf62
partially revert r1fba650c2aa4 on misc/physfs/CMakeLists.txt which randomly set true and false variables
koda
parents:
8146
diff
changeset
|
558 |
ENDIF(PHYSFS_BUILD_TEST) |
7768 | 559 |
|
560 |
# end of CMakeLists.txt ... |
|
561 |