aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/CMakeLists.txt
blob: b0d342a402623ac700d9f3871c5b77ebdec11acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FILE(GLOB examples_SRCS "*.cpp")

FOREACH(example_src ${examples_SRCS})
GET_FILENAME_COMPONENT(example ${example_src} NAME_WE)
ADD_EXECUTABLE(${example} ${example_src})
GET_TARGET_PROPERTY(example_executable ${example} LOCATION)
ADD_CUSTOM_COMMAND(
  TARGET ${example}
  POST_BUILD
  COMMAND ${example_executable}
  ARGS >${CMAKE_CURRENT_BINARY_DIR}/${example}.out
)
MESSAGE(coucou)
ENDFOREACH(example_src)