You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
518 B
15 lines
518 B
11 years ago
|
# A dummy checker implementation that does not write the requested output file
|
||
|
# so it triggers an error for every checker.
|
||
|
|
||
10 years ago
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/ret0.c.in" "int main(){return 0;}\n")
|
||
|
|
||
|
configure_file(
|
||
|
"${CMAKE_CURRENT_BINARY_DIR}/ret0.c.in"
|
||
|
"${CMAKE_CURRENT_BINARY_DIR}/ret0.c"
|
||
|
)
|
||
11 years ago
|
|
||
|
foreach(_pseudo IN ITEMS valgrind purify BC)
|
||
|
add_executable(pseudonl_${_pseudo} "${CMAKE_CURRENT_BINARY_DIR}/ret0.c")
|
||
|
set_target_properties(pseudonl_${_pseudo} PROPERTIES OUTPUT_NAME ${_pseudo})
|
||
10 years ago
|
endforeach()
|