cmake/Tests/MathTest/CMakeLists.txt

30 lines
620 B
CMake
Raw Normal View History

cmake_minimum_required (VERSION 2.6)
2013-03-16 19:13:01 +02:00
project(MathTest)
# Expression test
2013-03-16 19:13:01 +02:00
set(expressions
"5 * ( 3 + 4)"
"(1 | 2 | 4 | 8) & 16"
"1 +(3*4) + 10 >> 2"
"10000 / 20 / 4"
"10000 / (20 / 4)"
)
2013-03-16 19:13:01 +02:00
set(FILE_EXPRESSIONS "")
foreach(expression
${expressions})
2013-03-16 19:13:01 +02:00
math(EXPR expr "${expression}")
set(FILE_EXPRESSIONS "${FILE_EXPRESSIONS}TEST_EXPRESSION(${expression}, ${expr})\n")
endforeach()
2013-03-16 19:13:01 +02:00
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/MathTestTests.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/MathTestTests.h"
@ONLY)
2013-03-16 19:13:01 +02:00
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
add_executable(MathTest MathTestExec.cxx)