File: msvc-11-win64-options.cmake

package info (click to toggle)
trilinos 16.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 993,992 kB
  • sloc: cpp: 3,764,859; ansic: 425,011; fortran: 160,684; python: 101,476; xml: 74,329; sh: 37,044; makefile: 22,641; perl: 7,525; f90: 6,424; csh: 5,285; objc: 2,620; lex: 1,646; lisp: 810; yacc: 603; javascript: 552; awk: 364; ml: 281; php: 145
file content (19 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Ross Bartlet (2012/12/20): Base options file I use for "MS Visual C++ 11
# Win64" to set some basic options that I set with
# Trilinos_CONFIGURE_OPTIONS_FILE with the QT CMake interface.  I use this as
# a template that I copy into the build directory and then I configure with
# the CMake GUI on Windows by first manually setting the option
# Trilinos_CONFIGURE_OPTIONS_FILE and then running configure.  Using this
# approach makes it easy to reconfigure from scratch.  This is highly
# recommended.  Note that when building Trilinos withthe 64 bit compiler, you
# also need to build and link against CLAPACK that is also built with the 64
# bit compiler.

SET(CMAKE_BUILD_TYPE DEBUG CACHE STRING "")
SET(BUILD_SHARED_LIBS OFF CACHE BOOL "")
SET(CLAPACKDIR "C:/_mystuff/T/CLAPACK64" CACHE FILEPATH "")
SET(Trilinos_ENABLE_TESTS ON CACHE BOOL "")
SET(Trilinos_ENABLE_Teuchos ON CACHE BOOL "")
SET(Trilinos_ENABLE_Thyra ON CACHE BOOL "")
SET(CMAKE_CXX_FLAGS "/bigobj" CACHE STRING "")
SET(TPL_ENABLE_Pthread OFF CACHE BOOL "")