1
0
forked from boostorg/bind

[CMake] Add self-test for cmake script

This commit is contained in:
Mike Dev
2018-12-04 15:17:32 +01:00
parent 84c711bbe8
commit 6a6f61f847
3 changed files with 39 additions and 0 deletions

View File

@@ -24,6 +24,20 @@ matrix:
- env: BOGUS_JOB=true - env: BOGUS_JOB=true
include: include:
# cmake self-test
- os: linux
env: TEST_CMAKE=TRUE #Only for easier identification in travis web gui
install:
- git clone --depth 1 https://github.com/boostorg/config.git ../config
- git clone --depth 1 https://github.com/boostorg/core.git ../core
- git clone --depth 1 https://github.com/boostorg/assert.git ../assert
script:
- mkdir __build__ && cd __build__
- cmake ../test/test_cmake
- cmake --build .
- os: linux - os: linux
compiler: g++ compiler: g++
env: TOOLSET=gcc COMPILER=g++ CXXSTD=03,11 env: TOOLSET=gcc COMPILER=g++ CXXSTD=03,11

View File

@@ -0,0 +1,20 @@
# Copyright 2018 Mike Dev
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
#
# NOTE: This does NOT run the unit tests for Boost.Bind.
# It only tests, if the CMakeLists.txt file in it's root works as expected
cmake_minimum_required( VERSION 3.5 )
project( BoostBindCMakeSelfTest )
add_subdirectory( ../../../config ${CMAKE_CURRENT_BINARY_DIR}/libs/config )
add_subdirectory( ../../../core ${CMAKE_CURRENT_BINARY_DIR}/libs/core )
add_subdirectory( ../../../assert ${CMAKE_CURRENT_BINARY_DIR}/libs/assert )
add_subdirectory( ../.. ${CMAKE_CURRENT_BINARY_DIR}/libs/boost_bind )
add_executable( boost_bind_cmake_self_test main.cpp )
target_link_libraries( boost_bind_cmake_self_test Boost::bind )

5
test/test_cmake/main.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include <boost/bind.hpp>
int main() {
}