-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initisl fleshing out of cmake file in cxx4 directory.
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## This file is used to customize CTest. | ||
## See: | ||
## | ||
## http://public.kitware.com/Wiki/CTest:Using_CTEST_and_CDASH_without_CMAKE | ||
## | ||
## for more information. | ||
|
||
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS "500") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## This is a CMake file, part of Unidata's netcdf-cxx package. | ||
|
||
SET(CXX_HEADERS ncAtt.h ncCheck.h ncDim.h ncException.h ncGroup.h ncOpaqueType.h ncVar.h ncVlenType.h ncCompoundType.h ncEnumType.h ncFile.h ncGroupAtt.h ncType.h ncVarAtt.h ncByte.h ncChar.h ncShort.h ncInt.h ncFloat.h ncDouble.h ncUbyte.h ncUshort.h ncUint.h ncInt64.h ncUint64.h ncString.h) | ||
|
||
SET(CXX_SOURCES ncAtt.cpp ncCheck.cpp ncCompoundType.cpp ncDim.ccp ncEnumType.cpp ncException.cpp ncFile.cpp ncGroup.cpp ncGroupAtt.cpp ncOpaqueType.cpp ncType.cpp ncVar.cpp ncVarAtt.cpp ncVlenType.cpp ncByte.cpp ncChar.cpp ncShort.cpp ncInt.cpp ncFloat.cpp ncDouble.cpp ncUbyte.cpp ncUshort.cpp ncUint.cpp ncInt64.cpp ncString.cpp) | ||
|
||
ADD_LIBRARY(ncxx OBJECT ${CXX_HEADERS} ${CXX_SOURCES}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# NetCDF C Configuration Summary | ||
============================== | ||
|
||
# General | ||
------- | ||
NetCDF Version: 4.3.3.1 | ||
Configured On: Mon Apr 13 01:07:45 MDT 2015 | ||
Host System: i686-pc-linux-gnu | ||
Build Directory: /home/vagrant/netcdf-c | ||
Install Prefix: /home/vagrant/local-nc | ||
|
||
# Compiling Options | ||
----------------- | ||
C Compiler: /usr/bin/gcc | ||
CFLAGS: -g -O2 | ||
CPPFLAGS: | ||
LDFLAGS: | ||
AM_CFLAGS: | ||
AM_CPPFLAGS: | ||
AM_LDFLAGS: | ||
Shared Library: yes | ||
Static Library: yes | ||
Extra libraries: -lhdf5_hl -lhdf5 -ldl -lm -lz -lcurl | ||
|
||
# Features | ||
-------- | ||
NetCDF-2 API: yes | ||
NetCDF-4 API: yes | ||
HDF4 Support: no | ||
HDF5 Support: yes | ||
PNetCDF Support: no | ||
Parallel Support: no | ||
DAP Support: yes | ||
Diskless Support: yes | ||
MMap Support: no | ||
JNA Support: no |