# This file is main input for cmake cmake_minimum_required(VERSION 3.0.0) # global defines set(DIR_REPORT "${CMAKE_SOURCE_DIR}/report") set(DIR_ENV "${CMAKE_SOURCE_DIR}/env") set(DIR_TOOL "${CMAKE_SOURCE_DIR}/tool") # project specific defines set(DIR_ASW "${CMAKE_SOURCE_DIR}/../asw") set(DIR_HAL "${CMAKE_SOURCE_DIR}/../hal") set(DIR_LIB "${CMAKE_SOURCE_DIR}/../lib") # include source code for testing include_directories(${DIR_ASW}) include_directories(${DIR_HAL}) include_directories(${DIR_LIB}) # test enviroment in which is the test executed include_directories(${DIR_ENV}) #include test procedures add_subdirectory(procedure) #eof