Skip to content

Commit

Permalink
Automatic snapshot commit from tribits at aeb746c
Browse files Browse the repository at this point in the history
Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = git@github.com:TriBITSPub/TriBITS.git'

At commit:

commit aeb746cc4499d9364807cb1b40fc366429bad06c
Author:  Roscoe A. Bartlett <rabartl@sandia.gov>
Date:    Thu Aug 26 06:40:10 2021 -0600
Summary: Change internal TriBITS target_link_libraries() to PUBLIC (trilinos#299)
  • Loading branch information
bartlettroscoe committed Sep 3, 2021
1 parent bd26a11 commit 2beb906
Show file tree
Hide file tree
Showing 436 changed files with 17,118 additions and 15,410 deletions.
16 changes: 13 additions & 3 deletions cmake/tribits/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Release Notes for TriBITS
----------------------------------------

2021/06/17:

(*) MINOR: Added tool tribits/python_utils/lower_case_cmake.py and driver
tribits/refactoring/lower-case-cmake-tree.sh that can make CMake command
calls lower-case and make macro and function definition names lowe case.
This was applied to the entire TriBITS repository (and then minor
modifications for fix a few issues). This should not impact users of
TriBITS but it does change the case of commands in the TriBITS error
messages. (See TriBITSPub/TriBITS#274)

2021/05/15:

(*) MAJOR: Changed so that all arguments passed to ctest -S command in
Expand Down Expand Up @@ -267,10 +277,10 @@ Trilinos 11.3:
TRIBITS_ADD_EXECUTABLE_AND_TEST().

(*) MINOR: TriBITS Core: Fixed the generation of headers for explicit
instantation system for subpackages: Now subpackages that use the macro
instantiation system for subpackages: Now subpackages that use the macro
TRIBITS_CREATE_CLIENT_TEMPLATE_HEADERS() to generate XXX.hpp header files
with or without explicit instantation will key off of the parent package's
explicit instantation setting. In addition, packages that use the macro
with or without explicit instantiation will key off of the parent package's
explicit instantiation setting. In addition, packages that use the macro
TRIBITS_CREATE_CLIENT_TEMPLATE_HEADERS() will also need to add a call to
TRIBITS_ADD_EXPLICIT_INSTANTIATION_OPTION() in their top-level
CMakeLists.txt file.
Expand Down
22 changes: 11 additions & 11 deletions cmake/tribits/TriBITS.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
# Top-level include file that pulls in TriBITS so it can be used by a project.
# A Project's top-level CMakeLists.cmake file just does:
#
# INCLUDE(${${PROJECT_NAME}_TRIBITS_DIR}/TriBITS.cmake)
# include(${${PROJECT_NAME}_TRIBITS_DIR}/TriBITS.cmake)
#
# and then they can call:
#
# TRIBITS_PROJECT()
# tribits_project()
#

IF (${PROJECT_NAME}_TRIBITS_DIR)
SET(TRIBITS_BASE_DIR_LOCAL "${${PROJECT_NAME}_TRIBITS_DIR}")
ELSEIF(CMAKE_CURRENT_LIST_DIR)
SET(TRIBITS_BASE_DIR_LOCAL "${CMAKE_CURRENT_LIST_DIR}")
ELSE()
MESSAGE(FATAL_ERROR "Please set ${PROJECT_NAME}_TRIBITS_DIR!")
ENDIF()
if (${PROJECT_NAME}_TRIBITS_DIR)
set(TRIBITS_BASE_DIR_LOCAL "${${PROJECT_NAME}_TRIBITS_DIR}")
elseif(CMAKE_CURRENT_LIST_DIR)
set(TRIBITS_BASE_DIR_LOCAL "${CMAKE_CURRENT_LIST_DIR}")
else()
message(FATAL_ERROR "Please set ${PROJECT_NAME}_TRIBITS_DIR!")
endif()

INCLUDE("${TRIBITS_BASE_DIR_LOCAL}/core/package_arch/TribitsProject.cmake")
INCLUDE("${TRIBITS_BASE_DIR_LOCAL}/Version.cmake")
include("${TRIBITS_BASE_DIR_LOCAL}/core/package_arch/TribitsProject.cmake")
include("${TRIBITS_BASE_DIR_LOCAL}/Version.cmake")
16 changes: 8 additions & 8 deletions cmake/tribits/Version.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
IF ("${REPOSITORY_NAME}" STREQUAL "")
SET(REPOSITORY_NAME TriBITS)
ENDIF()
if ("${REPOSITORY_NAME}" STREQUAL "")
set(REPOSITORY_NAME TriBITS)
endif()

SET(${REPOSITORY_NAME}_VERSION 0.9)
SET(${REPOSITORY_NAME}_MAJOR_VERSION 00)
SET(${REPOSITORY_NAME}_MAJOR_MINOR_VERSION 000900)
SET(${REPOSITORY_NAME}_VERSION_STRING "0.9 (Dev)")
SET(${REPOSITORY_NAME}_ENABLE_DEVELOPMENT_MODE_DEFAULT ON) # Change to 'OFF' for a release
set(${REPOSITORY_NAME}_VERSION 0.9)
set(${REPOSITORY_NAME}_MAJOR_VERSION 00)
set(${REPOSITORY_NAME}_MAJOR_MINOR_VERSION 000900)
set(${REPOSITORY_NAME}_VERSION_STRING "0.9 (Dev)")
set(${REPOSITORY_NAME}_ENABLE_DEVELOPMENT_MODE_DEFAULT ON) # Change to 'OFF' for a release
Loading

0 comments on commit 2beb906

Please sign in to comment.