# Copyright Louis Dionne 2013-2016 # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) ############################################################################## # Setup custom functions and master targets for the examples ############################################################################## add_custom_target(examples COMMENT "Build all the examples.") add_dependencies(check examples) # Several examples have unused parameters because the name of the parameters # are useful for illustration, even if the implementation is not actually # presented. We don't want to generate warnings for that or need to comment # out all unused parameter names. boost_hana_append_flag(BOOST_HANA_HAS_WNO_UNUSED_PARAMETER -Wno-unused-parameter) ############################################################################## # Caveats: Take note of examples that are not supported. ############################################################################## if (NOT Boost_FOUND) list(APPEND EXCLUDED_EXAMPLES "ext/boost/*.cpp" "tutorial/appendix_mpl.cpp" "tutorial/ext/fusion_to_hana.cpp" "tutorial/ext/mpl_vector.cpp" "tutorial/integral.cpp" "tutorial/introduction.cpp" "tutorial/mpl_cheatsheet.cpp" "tutorial/quadrants.cpp" "tutorial/quickstart.switchAny.cpp" "tutorial/rationale.container.cpp" "tutorial/type.cpp" "type/basic_type.cpp" ) endif() ############################################################################## # Add all the examples ############################################################################## file(GLOB_RECURSE EXAMPLES "*.cpp") file(GLOB_RECURSE EXCLUDED_EXAMPLES ${EXCLUDED_EXAMPLES}) list(REMOVE_ITEM EXAMPLES "" ${EXCLUDED_EXAMPLES}) foreach(_file IN LISTS EXAMPLES) boost_hana_target_name_for(_target "${_file}") add_executable(${_target} EXCLUDE_FROM_ALL "${_file}") boost_hana_add_test(${_target} ${CMAKE_CURRENT_BINARY_DIR}/${_target}) add_dependencies(examples ${_target}) endforeach() ############################################################################## # Setup the `wandbox` target, which uploads the whole library along with the # example/wandbox.cpp example to http://melpon.org/wandbox, and prints a # permlink to it. ############################################################################## find_package(PythonInterp 2.7) if (PYTHONINTERP_FOUND) add_custom_target(wandbox COMMAND ${PYTHON_EXECUTABLE} ${Boost.Hana_SOURCE_DIR}/cmake/wandbox.py ${Boost.Hana_SOURCE_DIR}/include ${Boost.Hana_SOURCE_DIR}/example/wandbox.cpp SOURCES ${Boost.Hana_SOURCE_DIR}/cmake/wandbox.py ${Boost.Hana_SOURCE_DIR}/example/wandbox.cpp) else() message(WARNING "A suitable version of the Python interpreter could not " "be found; the 'wandbox' target will not be available.") endif()