aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples
diff options
context:
space:
mode:
authorGravatar Georg Drenkhahn <Georg.Drenkhahn@gmail.com>2014-08-22 12:13:07 +0200
committerGravatar Georg Drenkhahn <Georg.Drenkhahn@gmail.com>2014-08-22 12:13:07 +0200
commit0ba490cf80d9c389de410beaa3551b2a2a72a801 (patch)
treec100022450bcc4ab8dfaba9f9bab9bf283ed848b /doc/examples
parent25a3e65a685f66f04b83003f12cd97b91e646c20 (diff)
Fixed CMakeLists.txt files to prevent CMake 3.0.0 warnings about deprecated LOCATION target property.
Small whitespace cleanup in CMakelLists.txt.
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/CMakeLists.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/examples/CMakeLists.txt b/doc/examples/CMakeLists.txt
index 71b272a15..08cf8efd7 100644
--- a/doc/examples/CMakeLists.txt
+++ b/doc/examples/CMakeLists.txt
@@ -6,12 +6,10 @@ foreach(example_src ${examples_SRCS})
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}
+ COMMAND ${example}
ARGS >${CMAKE_CURRENT_BINARY_DIR}/${example}.out
)
add_dependencies(all_examples ${example})