Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/cmake/PackageConfigMSVC.cmake @ 10208

Last change on this file since 10208 was 10208, checked in by muemart, 9 years ago

Some small fixes for the MSVC build

  • Don't hardcode library names. It's more trouble than it's worth.
  • Add debug library names for CEBUI 0.8.x
  • Prevent double definitions of winsock stuff
  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
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 #    Sets the library directories when using precompiled dependency archives
24 #  Note:
25 #    When setting ENV${} variables, make sure to use quotes for lists
26 #
27
28IF(MSVC)
29
30  INCLUDE(CheckPackageVersion)
31  CHECK_PACKAGE_VERSION(4.4 6.0)
32
33  # 64 bit system?
34  IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
35    SET(BINARY_POSTFIX x64)
36  ELSE()
37    SET(BINARY_POSTFIX x86)
38  ENDIF()
39
40  # Choose right MSVC version
41  STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?).*$" "\\1"
42         _msvc_version "${CMAKE_GENERATOR}")
43
44  SET(DEP_INCLUDE_DIR ${DEPENDENCY_PACKAGE_DIR}/include)
45  SET(DEP_LIBRARY_DIR ${DEPENDENCY_PACKAGE_DIR}/lib/msvc${_msvc_version}-${BINARY_POSTFIX})
46  SET(DEP_BINARY_DIR  ${DEPENDENCY_PACKAGE_DIR}/bin/msvc${_msvc_version}-${BINARY_POSTFIX})
47  IF(NOT EXISTS ${DEP_LIBRARY_DIR})
48    message(FATAL_ERROR "No binaries found for your MSVC Version (${CMAKE_GENERATOR})")
49  ENDIF()
50
51  # Also the directory with the runtime libraries
52  SET(RUNTIME_LIBRARY_DIRECTORY ${DEP_BINARY_DIR})
53
54  # Sets the library path for the FIND_LIBRARY
55  SET(CMAKE_LIBRARY_PATH ${DEP_LIBRARY_DIR})
56 
57  # Part of Platform SDK and usually gets linked automatically
58  SET(WMI_LIBRARY  wbemuuid.lib)
59
60ENDIF(MSVC)
Note: See TracBrowser for help on using the repository browser.