diff options
author | Peter Powell <petpow@saberuk.com> | 2015-12-15 00:12:57 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-12-31 02:40:36 +0000 |
commit | dd6688b9875bef4c3ce5e66fd19283ac931b72ea (patch) | |
tree | 8ef774f4e50e04a72994e1c737ca1dced14bb085 /include | |
parent | 63f865dcacf459f65b75a4269288b3090b14f956 (diff) |
Remove repeated expressions from CMake end*() and else() calls.
Diffstat (limited to 'include')
-rw-r--r-- | include/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 72bfdfba1..f4ed6a0a4 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -16,7 +16,7 @@ add_to_cpack_ignored_files("${version_BINARY}$" TRUE) if(NOT WIN32) add_to_cpack_ignored_files("version.h$" TRUE) add_to_cpack_ignored_files("build.h$" TRUE) -endif(NOT WIN32) +endif() # Add a custom target to the above file add_custom_target(headers DEPENDS version ${CMAKE_CURRENT_BINARY_DIR}/version_build) |