blob: bef2401469f18d9e1a9d3c9872c72647a2054b92 [file] [log] [blame]
Thomas Psota79a97d62019-11-25 15:33:10 +01001###############################################
2### enable_testbed ###
3###############################################
4###
5### Load instructions from a testing.cmake file
6### This can be used, to create build targets
7### for testing purposes
8###
9
10function( enable_testbed )
11 if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/testbed.cmake")
12 include("${CMAKE_CURRENT_SOURCE_DIR}/testbed.cmake")
13 endif()
14endfunction()