1 | # |
---|
2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
3 | # > www.orxonox.net < |
---|
4 | # |
---|
5 | # This program is free software; you can redistribute it and/or |
---|
6 | # modify it under the terms of the GNU General Public License |
---|
7 | # as published by the Free Software Foundation; either version 2 |
---|
8 | # of the License, or (at your option) any later version. |
---|
9 | # |
---|
10 | # This program is distributed in the hope that it will be useful, |
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
13 | # GNU General Public License for more details. |
---|
14 | # |
---|
15 | # You should have received a copy of the GNU General Public License along |
---|
16 | # with this program; if not, write to the Free Software Foundation, |
---|
17 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
18 | # |
---|
19 | # |
---|
20 | # Author: |
---|
21 | # Reto Grieder |
---|
22 | # Description: |
---|
23 | # General package configuration. Merely sets the include paths. |
---|
24 | # Library files are treated separately. |
---|
25 | # |
---|
26 | |
---|
27 | IF(NOT _INTERNAL_PACKAGE_MESSAGE) |
---|
28 | MESSAGE(STATUS "Using library package for the dependencies.") |
---|
29 | SET(_INTERNAL_PACKAGE_MESSAGE 1 CACHE INTERNAL "Do not edit!" FORCE) |
---|
30 | ENDIF() |
---|
31 | |
---|
32 | # Include paths and other special treatments |
---|
33 | #SET(ENV{ALUTDIR} ${DEP_INCLUDE_DIR}/freealut) |
---|
34 | #LIST(APPEND CMAKE_INCLUDE_PATH ${DEP_INCLUDE_DIR}/tcl/include) |
---|
35 | |
---|
36 | ### INSTALL ### |
---|
37 | |
---|
38 | # On Windows, DLLs have to be in the executable folder, install them |
---|
39 | IF(WIN32 AND DEP_BINARY_DIR) |
---|
40 | ## DEBUG |
---|
41 | # When installing a debug version, we really can't know which libraries |
---|
42 | # are used in released mode because there might be deps of deps. |
---|
43 | # --> Copy all of them, except the debug databases |
---|
44 | INSTALL( |
---|
45 | DIRECTORY ${DEP_BINARY_DIR}/ |
---|
46 | DESTINATION bin |
---|
47 | CONFIGURATIONS Debug |
---|
48 | REGEX "^.*\\.pdb$" EXCLUDE |
---|
49 | ) |
---|
50 | |
---|
51 | ## RELEASE |
---|
52 | # Try to filter out all the debug libraries. If the regex doesn't do the |
---|
53 | # job anymore, simply adjust it. |
---|
54 | INSTALL( |
---|
55 | DIRECTORY ${DEP_BINARY_DIR}/ |
---|
56 | DESTINATION bin |
---|
57 | CONFIGURATIONS Release RelWithDebInfo MinSizeRel |
---|
58 | REGEX "_[Dd]\\.[a-zA-Z0-9+-]+$|-mt-gd-|^.*\\.pdb$" EXCLUDE |
---|
59 | ) |
---|
60 | ENDIF() |
---|