Skip to content

Commit

Permalink
update link to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
robertramey committed Apr 22, 2014
1 parent c2c0933 commit 64937c1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CMake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,25 @@ link_directories("${Boost_LIBRARY_DIRS}")

include (CTest)

if(0)

## This file should be placed in the root directory of your project.
## Then modify the CMakeLists.txt file in the root directory of your
## project to incorporate the testing dashboard.
## # The following are required to uses Dart and the Cdash dashboard
## ENABLE_TESTING()
## INCLUDE(CTest)
set(CTEST_PROJECT_NAME "Safe Numerics")
set(CTEST_NIGHTLY_START_TIME "01:00:00 UTC")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "my.cdash.org")
# set(CTEST_DROP_LOCATION "/cdash/submit.php?project=MyProject")
set(CTEST_DROP_LOCATION "/index.php?project=Safe+Numerics")
set(CTEST_DROP_SITE_CDASH TRUE)

endif()

# the include above includes enable_testing() so the following line isn't
# necessary
# enable_testing()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Arithmetic operations in C++ are NOT guarenteed to yield a correct mathematical

Additionally, we define data types safe_signed_range<MIN, MAX> and safe_unsigned_range<MIN, MAX> which will throw an exception if an attempt is made to store a result which is outside the closed range [MIN, MAX]

Browse documentation <a href=http://htmlpreview.github.io/?https://raw.github.com/robertramey/safe_numerics/master/safe_numerics/doc/html/index.html>here</a>
Browse documentation <a href=http://htmlpreview.github.com/?https://raw.github.com/robertramey/safe_numerics/master/doc/html/index.html>here</a>

0 comments on commit 64937c1

Please sign in to comment.