blob: 5eb0d8a9f0a0a7b9e7aff76c0840b0cd8fe150fe (
plain)
1
2
3
4
5
6
7
8
9
|
include("${COUNT_FILE}" OPTIONAL)
if(NOT COUNT)
set(COUNT 0)
endif()
math(EXPR COUNT "${COUNT} + 1")
file(WRITE "${COUNT_FILE}" "set(COUNT ${COUNT})\n")
if(COUNT EQUAL 2)
message(FATAL_ERROR "this test fails on the 2nd run")
endif()
|