Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-04 11:26:47 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-08-04 11:26:47 +0300
commit16abbfc862c696e20e2ad7d7cb0a67052cc55d8c (patch)
tree4dd9739df0775c20991fdb8d73dff64f431a44a4 /.ci.cmake
parentcab29b94bd88b11ddeb90d433350d19b54801c54 (diff)
Add BoostLiteMakeDoxygen
Diffstat (limited to '.ci.cmake')
-rw-r--r--.ci.cmake12
1 files changed, 5 insertions, 7 deletions
diff --git a/.ci.cmake b/.ci.cmake
index c5c42d92..7f267af0 100644
--- a/.ci.cmake
+++ b/.ci.cmake
@@ -17,7 +17,7 @@ endif()
include(BoostLiteUtils)
-configure_ctest_script_for_cdash("afio" "build")
+CONFIGURE_CTEST_SCRIPT_FOR_CDASH("afio" "build")
ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY})
ctest_start("Experimental")
@@ -27,7 +27,8 @@ ctest_test()
merge_junit_results_into_ctest_xml()
if(WIN32)
if(EXISTS build/bin/Release/afio_dl-2.0-Windows-x64-Release.dll)
- execute_process(COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_win64.tar.gz
+ checked_execute_process("Tarring up binaries"
+ COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_win64.tar.gz
doc
include
Readme.md
@@ -35,24 +36,21 @@ if(WIN32)
build/lib/Release/afio_sl-2.0-Windows-x64-Release.lib
build/lib/Release/afio_dl-2.0-Windows-x64-Release.lib
build/bin/Release/afio_dl-2.0-Windows-x64-Release.dll
- RESULT_VARIABLE retval
)
- message(STATUS "Tarring up binaries returned with status ${retval}")
execute_process(COMMAND cmd /c dir)
ctest_upload(FILES afio_v2_binaries_win64.tar.gz)
endif()
else()
if(EXISTS build/bin/Release/afio_dl-2.0-Linux-x86_64-Release.so)
- execute_process(COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_linux64.tgz
+ checked_execute_process("Tarring up binaries"
+ COMMAND "${CMAKE_COMMAND}" -E tar cfz afio_v2_binaries_linux64.tgz
doc
include
Readme.md
release_notes.md
build/lib/Release/afio_sl-2.0-Linux-x86_64-Release.a
build/bin/Release/afio_dl-2.0-Linux-x86_64-Release.so
- RESULT_VARIABLE retval
)
- message(STATUS "Tarring up binaries returned with status ${retval}")
ctest_upload(FILES afio_v2_binaries_linux64.tgz)
endif()
endif()