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.
18 lines
604 B
18 lines
604 B
file(GLOB examples_SRCS "*.cpp")
|
|
|
|
foreach(example_src ${examples_SRCS})
|
|
get_filename_component(example ${example_src} NAME_WE)
|
|
add_executable(${example} ${example_src})
|
|
if(EIGEN_STANDARD_LIBRARIES_TO_LINK_TO)
|
|
target_link_libraries(${example} ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
|
endif()
|
|
get_target_property(example_executable
|
|
${example} LOCATION)
|
|
add_custom_command(
|
|
TARGET ${example}
|
|
POST_BUILD
|
|
COMMAND ${example_executable}
|
|
ARGS >${CMAKE_CURRENT_BINARY_DIR}/${example}.out
|
|
)
|
|
add_dependencies(all_examples ${example})
|
|
endforeach(example_src)
|