-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
1,317 additions
and
33 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 @@ | ||
set(cd77_deps ${python_pkg} ${ezget_pkg} ${libcdms_pkg} ${setuptools_pkg} ) |
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,16 @@ | ||
# create an external project to install cd77 | ||
# and configure and build it | ||
|
||
ExternalProject_Add(cd77 | ||
DOWNLOAD_DIR ${CDAT_PACKAGE_CACHE_DIR} | ||
SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/build/cd77 | ||
${GIT_CMD_STR_cd77} | ||
${GIT_TAG_cd77} | ||
BUILD_IN_SOURCE 1 | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND env LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH} CFLAGS=$ENV{CFLAGS} LDFLAGS=$ENV{LDFLAGS} PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH} PYTHONPATH=${PYTHONPATH} ${USR_ENVS} ${PYTHON_EXECUTABLE} setup.py install ${USER_INSTALL_OPTIONS} ${PRFX} | ||
DEPENDS ${${nm}_deps} | ||
${ep_log_options} | ||
) | ||
|
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,13 @@ | ||
set(cd77_VERSION 1.0.0) | ||
set(cd77_BRANCH master) | ||
set(cd77_REPOSITORY ${GIT_PROTOCOL}github.com/UV-CDAT/cd77.git ) | ||
|
||
|
||
set(GIT_CMD_STR_cd77 GIT_REPOSITORY ${cd77_REPOSITORY}) | ||
set(GIT_TAG_cd77 GIT_TAG "${cd77_BRANCH}") | ||
set (nm cd77) | ||
string(TOUPPER ${nm} uc_nm) | ||
|
||
if (CDAT_BUILD_PCMDI) | ||
add_cdat_package(cd77 "" "" ON) | ||
endif() |
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
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 @@ | ||
set(coverage_deps ${python_pkg} ${pip_pkg}) |
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,4 @@ | ||
# External coverage.py package | ||
set(nm COVERAGE) | ||
|
||
include(pipinstaller) |
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,10 @@ | ||
set(COVERAGE_MAJOR_SRC 4) | ||
set(COVERAGE_MINOR_SRC 0) | ||
set(COVERAGE_PATCH_SRC 3) | ||
|
||
set(COVERAGE_VERSION ${COVERAGE_MAJOR_SRC}.${COVERAGE_MINOR_SRC}.${COVERAGE_PATCH_SRC}) | ||
set(COVERAGE_GZ coverage-${COVERAGE_VERSION}.tar.gz) | ||
set(COVERAGE_SOURCE ${LLNL_URL}/${COVERAGE_GZ}) | ||
set(COVERAGE_MD5 c7d3db1882484022c81bf619be7b6365) | ||
|
||
add_cdat_package_dependent(COVERAGE "" "" ON "CDAT_MEASURE_COVERAGE" OFF) |
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 @@ | ||
set(ezget_deps ${netcdf_pkg} ${libdrs_pkg} ${libcdms_pkg}) |
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,43 @@ | ||
set(ezget_source "${CMAKE_CURRENT_BINARY_DIR}/build/ezget") | ||
set(ezget_install "${cdat_EXTERNALS}") | ||
|
||
configure_file( | ||
${cdat_CMAKE_SOURCE_DIR}/cdat_modules_extra/ezget_Makefile.gfortran.in | ||
${CMAKE_CURRENT_BINARY_DIR}/CMake/ezget_Makefile | ||
) | ||
|
||
if(DEFINED GIT_CMD_STR_EZGET ) | ||
message("[INFO] [ezget] Installing ${nm} from ${GIT_CMD_STR_EZGET}") | ||
include(GetGitRevisionDescription) | ||
set(URL_STR ) | ||
set(URL_MD5_STR ) | ||
else() | ||
message("[INFO] [ezget] Installed ${nm} from tarball ${EZGET_GZ}") | ||
set(URL_STR URL ${EZGET_URL}/${EZGET_GZ}) | ||
set(URL_MD5_STR URL_MD5 ${EZGET_MD5}) | ||
set(GIT_CMD_STR_EZGET ) | ||
set(GIT_TAG ) | ||
endif() | ||
set(EZGET_MAKE_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/ezget_Makefile) | ||
set(EZGET_MAKE_INSTALL_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/ezget_Makefile^^install) | ||
set(EZGET_BUILD_ARGS -fPIC) | ||
|
||
ExternalProject_Add(ezget | ||
LIST_SEPARATOR ^^ | ||
DOWNLOAD_DIR ${CDAT_PACKAGE_CACHE_DIR} | ||
SOURCE_DIR ${ezget_source} | ||
INSTALL_DIR ${ezget_install} | ||
${URL_STR} | ||
${URL_MD5_STR} | ||
${GIT_CMD_STR_EZGET} | ||
${GIT_TAG} | ||
BUILD_IN_SOURCE 1 | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${EZGET_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${EZGET_MAKE_ARGS} -DWORKING_DIR=<SOURCE_DIR> -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
INSTALL_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${EZGET_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${EZGET_MAKE_INSTALL_ARGS} -DWORKING_DIR=<SOURCE_DIR> -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
DEPENDS ${ezget_deps} | ||
${ep_log_options} | ||
) | ||
if (DEFINED GIT_CMD_STR_EZGET) | ||
unset(GIT_CMD_STR_EZGET) | ||
endif() |
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,10 @@ | ||
set(EZGET_VERSION 1.0.0) | ||
set(EZGET_BRANCH master) | ||
set(EZGET_REPOSITORY ${GIT_PROTOCOL}github.com/UV-CDAT/EzGet.git ) | ||
|
||
set(GIT_CMD_STR_EZGET GIT_REPOSITORY ${EZGET_REPOSITORY}) | ||
set(GIT_TAG GIT_TAG "${EZGET_BRANCH}") | ||
|
||
if (CDAT_BUILD_PCMDI) | ||
add_cdat_package(ezget "" "" ON) | ||
endif() |
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 @@ | ||
set(lats_deps ${netcdf_pkg}) |
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,44 @@ | ||
|
||
set(lats_source "${CMAKE_CURRENT_BINARY_DIR}/build/lats") | ||
set(lats_install "${cdat_EXTERNALS}") | ||
|
||
configure_file( | ||
${cdat_CMAKE_SOURCE_DIR}/cdat_modules_extra/lats_Makefile.gfortran.in | ||
${CMAKE_CURRENT_BINARY_DIR}/CMake/lats_Makefile | ||
) | ||
|
||
if(DEFINED GIT_CMD_STR_LATS ) | ||
message("[INFO] [lats] Installing ${nm} from ${GIT_CMD_STR_LATS}") | ||
include(GetGitRevisionDescription) | ||
set(URL_STR ) | ||
set(URL_MD5_STR ) | ||
else() | ||
message("[INFO] [lats] Installed ${nm} from tarball ${LATS_GZ}") | ||
set(URL_STR URL ${LATS_URL}/${LATS_GZ}) | ||
set(URL_MD5_STR URL_MD5 ${LATS_MD5}) | ||
set(GIT_CMD_STR_LATS ) | ||
set(GIT_TAG ) | ||
endif() | ||
set(LATS_MAKE_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/lats_Makefile) | ||
set(LATS_MAKE_INSTALL_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/lats_Makefile^^install) | ||
set(LATS_BUILD_ARGS -fPIC) | ||
|
||
ExternalProject_Add(lats | ||
LIST_SEPARATOR ^^ | ||
DOWNLOAD_DIR ${CDAT_PACKAGE_CACHE_DIR} | ||
SOURCE_DIR ${lats_source} | ||
INSTALL_DIR ${lats_install} | ||
${URL_STR} | ||
${URL_MD5_STR} | ||
${GIT_CMD_STR_LATS} | ||
${GIT_TAG} | ||
BUILD_IN_SOURCE 1 | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LATS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LATS_MAKE_ARGS} -DWORKING_DIR=<SOURCE_DIR> -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
INSTALL_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LATS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LATS_MAKE_INSTALL_ARGS} -DWORKING_DIR=<SOURCE_DIR> -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
DEPENDS ${lats_deps} | ||
${ep_log_options} | ||
) | ||
if (DEFINED GIT_CMD_STR_LATS) | ||
unset(GIT_CMD_STR_LATS) | ||
endif() |
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,10 @@ | ||
set(LATS_VERSION 1.0.0) | ||
set(LATS_BRANCH master) | ||
set(LATS_REPOSITORY ${GIT_PROTOCOL}github.com/UV-CDAT/lats.git ) | ||
|
||
set(GIT_CMD_STR_LATS GIT_REPOSITORY ${LATS_REPOSITORY}) | ||
set(GIT_TAG GIT_TAG "${LATS_BRANCH}") | ||
|
||
if (CDAT_BUILD_PCMDI) | ||
add_cdat_package(lats "" "" ON) | ||
endif() |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
set(libcdms_deps ${netcdf_pkg} | ||
${jasper_pkg} ${g2clib_pkg} ${tiff_pkg} | ||
${png_pkg} ${jpeg_pkg} ) | ||
if (CDAT_BUILD_LIBDRS) | ||
message("[INFO] ADDING LIBDRS TO LIBCDMS DEPNDENCIES") | ||
LIST(APPEND libcdms_deps ${libdrs_pkg}) | ||
endif() |
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
|
||
set(libdrs_deps ${netcdf_pkg} ${g2clib_pkg}) |
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,49 @@ | ||
set(libdrs_source "${CMAKE_CURRENT_BINARY_DIR}/build/libdrs") | ||
set(libdrs_install "${cdat_EXTERNALS}") | ||
|
||
if (APPLE) | ||
set(libdrs_make_file libdrs_Makefile.Mac.gfortran.in) | ||
else () | ||
set(libdrs_make_file libdrs_Makefile.Linux.gfortran.in) | ||
endif () | ||
|
||
configure_file( | ||
${cdat_CMAKE_SOURCE_DIR}/cdat_modules_extra/${libdrs_make_file} | ||
${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrs_Makefile | ||
) | ||
|
||
if(DEFINED GIT_CMD_STR_LIBDRS ) | ||
message("[INFO] [libdrs] Installing ${nm} from ${GIT_CMD_STR_LIBDRS}") | ||
include(GetGitRevisionDescription) | ||
set(URL_STR ) | ||
set(URL_MD5_STR ) | ||
else() | ||
message("[INFO] [libdrs] Installed ${nm} from tarball ${LIBDRS_GZ}") | ||
set(URL_STR URL ${LIBDRS_URL}/${LIBDRS_GZ}) | ||
set(URL_MD5_STR URL_MD5 ${LIBDRS_MD5}) | ||
set(GIT_CMD_STR_LIBDRS ) | ||
set(GIT_TAG ) | ||
endif() | ||
set(LIBDRS_MAKE_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrs_Makefile) | ||
set(LIBDRS_MAKE_INSTALL_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrs_Makefile^^install) | ||
set(LIBDRS_BUILD_ARGS -fPIC) | ||
|
||
ExternalProject_Add(libdrs | ||
LIST_SEPARATOR ^^ | ||
DOWNLOAD_DIR ${CDAT_PACKAGE_CACHE_DIR} | ||
SOURCE_DIR ${libdrs_source} | ||
INSTALL_DIR ${libdrs_install} | ||
${URL_STR} | ||
${URL_MD5_STR} | ||
${GIT_CMD_STR_LIBDRS} | ||
${GIT_TAG} | ||
BUILD_IN_SOURCE 1 | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LIBDRS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LIBDRS_MAKE_ARGS} -DWORKING_DIR=<SOURCE_DIR>/lib -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
INSTALL_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LIBDRS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LIBDRS_MAKE_INSTALL_ARGS} -DWORKING_DIR=<SOURCE_DIR>/lib -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
DEPENDS ${libdrs_deps} | ||
${ep_log_options} | ||
) | ||
if (DEFINED GIT_CMD_STR_LIBDRS) | ||
unset(GIT_CMD_STR_LIBDRS) | ||
endif() |
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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# Added by Charles Doutriaux to build with libdrs support | ||
option(CDAT_BUILD_WITH_LIBDRS "Build with DRS file format support (needs to be in /usr/local/lib)" OFF) | ||
MARK_AS_ADVANCED(CDAT_BUILD_WITH_LIBDRS) | ||
set(LIBDRS_VERSION 1.0.0) | ||
set(LIBDRS_URL ${LLNL_URL}) | ||
set(LIBDRS_BRANCH master) | ||
set(LIBDRS_REPOSITORY ${GIT_PROTOCOL}github.com/UV-CDAT/libdrs.git ) | ||
|
||
set(GIT_CMD_STR_LIBDRS GIT_REPOSITORY ${LIBDRS_REPOSITORY}) | ||
set(GIT_TAG GIT_TAG "${LIBDRS_BRANCH}") | ||
message("[INFO] PCDMI ${CDAT_BUILD_PCMDI}") | ||
if (CDAT_BUILD_PCMDI) | ||
set(CDAT_BUILD_LIBDRS ON) | ||
add_cdat_package(libdrs "" "" ON) | ||
endif() |
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 @@ | ||
set(libdrsfortran_deps ${netcdf_pkg} ${g2clib_pkg} ${libcdms_pkg} ${libdrs_pkg}) |
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,46 @@ | ||
set(libdrs_source "${CMAKE_CURRENT_BINARY_DIR}/build/libdrs") | ||
set(libdrs_install "${cdat_EXTERNALS}") | ||
|
||
set(libdrsfortran_make_file libdrs_Makefile.Mac.fwrap.gfortran.in) | ||
|
||
configure_file( | ||
${cdat_CMAKE_SOURCE_DIR}/cdat_modules_extra/${libdrsfortran_make_file} | ||
${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrsfortran_Makefile | ||
) | ||
|
||
if(DEFINED GIT_CMD_STR_LIBDRSFORTRAN ) | ||
message("[INFO] [libdrs] Installing ${nm} from ${GIT_CMD_STR_LIBDRSFORTRAN}") | ||
include(GetGitRevisionDescription) | ||
set(URL_STR ) | ||
set(URL_MD5_STR ) | ||
else() | ||
message("[INFO] [libdrs] Installed ${nm} from tarball ${LIBDRSFORTRAN_GZ}") | ||
set(URL_STR URL ${LIBDRSFORTRAN_URL}/${LIBDRSFORTRAN_GZ}) | ||
set(URL_MD5_STR URL_MD5 ${LIBDRSFORTRAN_MD5}) | ||
set(GIT_CMD_STR_LIBDRS ) | ||
set(GIT_TAG ) | ||
endif() | ||
|
||
set(LIBDRS_MAKE_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrsfortran_Makefile) | ||
set(LIBDRS_MAKE_INSTALL_ARGS -f^^${CMAKE_CURRENT_BINARY_DIR}/CMake/libdrsfortran_Makefile^^install) | ||
set(LIBDRS_BUILD_ARGS -fPIC) | ||
|
||
ExternalProject_Add(libdrsfortran | ||
LIST_SEPARATOR ^^ | ||
DOWNLOAD_DIR ${CDAT_PACKAGE_CACHE_DIR} | ||
SOURCE_DIR ${libdrs_source} | ||
INSTALL_DIR ${libdrs_install} | ||
${URL_STR} | ||
${URL_MD5_STR} | ||
${GIT_CMD_STR_LIBDRSFORTRAN} | ||
${GIT_TAG} | ||
BUILD_IN_SOURCE 1 | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LIBDRS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LIBDRS_MAKE_ARGS} -DWORKING_DIR=<SOURCE_DIR>/lib -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
INSTALL_COMMAND ${CMAKE_COMMAND} -DADDITIONAL_CFLAGS=${LIBDRS_BUILD_ARGS} -Dmake=$(MAKE) -DBUILD_ARGS=${LIBDRS_MAKE_INSTALL_ARGS} -DWORKING_DIR=<SOURCE_DIR>/lib -P ${cdat_CMAKE_BINARY_DIR}/cdat_make_step.cmake | ||
DEPENDS ${libdrsfortran_deps} | ||
${ep_log_options} | ||
) | ||
if (DEFINED GIT_CMD_STR_LIBDRS) | ||
unset(GIT_CMD_STR_LIBDRS) | ||
endif() |
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,14 @@ | ||
set(LIBDRSFORTRAN_VERSION 1.0.0) | ||
set(LIBDRSFORTRAN_URL ${LLNL_URL}) | ||
set(LIBDRSFORTRAN_BRANCH master) | ||
set(LIBDRSFORTRAN_REPOSITORY ${GIT_PROTOCOL}github.com/UV-CDAT/libdrs.git ) | ||
|
||
set(GIT_CMD_STR_LIBDRSFORTRAN GIT_REPOSITORY ${LIBDRSFORTRAN_REPOSITORY}) | ||
set(GIT_TAG GIT_TAG "${LIBDRSFORTRAN_BRANCH}") | ||
message("[INFO] PCDMI ${CDAT_BUILD_PCMDI}") | ||
if (CDAT_BUILD_PCMDI) | ||
if (APPLE) | ||
set(CDAT_BUILD_LIBDRSFORTRAN ON) | ||
add_cdat_package(libdrsfortran "" "" ON) | ||
endif() | ||
endif() |
Oops, something went wrong.