File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ sudo : false
2+ language : c
3+ virtualenv :
4+ system_site_packages : true
5+
6+ # Build matrix
7+ compiler :
8+ - gcc
9+ - clang
10+ env :
11+ - BUILD_SHARED_LIBS="ON"
12+ - BUILD_SHARED_LIBS="OFF"
13+
14+ addons :
15+ apt :
16+ packages :
17+ - cmake
18+
19+ before_install :
20+ - echo `$CC --version`
21+
22+ script :
23+ - mkdir -p build
24+ - cd build
25+ - cmake -DWITH_UNIT_TESTS:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=$BUILD_SHARED_LIBS ..
26+ - make -j2
27+ - ctest --output-on-failure
28+
29+ after_success :
Original file line number Diff line number Diff line change 1+ [ ![ Build Status] ( https://travis-ci.org/cgreen-devs/cgreen.svg?branch=master )] ( https://travis-ci.org/cgreen-devs/cgreen )
2+
13Cgreen
24======
5+
36You probably got this package from...
47http://cgreen.sourceforge.net/projects/cgreen/
58
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ include(InstallRequiredSystemLibraries)
66### general settings
77set (CPACK_PACKAGE_NAME ${APPLICATION_NAME} )
88set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "The modern C/C++ unit testing/mocking framework" )
9- set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR } /README" )
9+ set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR } /README.md " )
1010set (CPACK_PACKAGE_VENDOR "The CGreen Development Team" )
1111set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR } /COPYING" )
1212
You can’t perform that action at this time.
0 commit comments