diff options
author | Jia Tan <jiat0218@gmail.com> | 2022-09-08 15:07:00 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-16 15:32:55 +0300 |
commit | e7a7ac744eb0f890ef52388de838596ef566c73f (patch) | |
tree | 2e48f205566602879fb7c03089328f4f8e39fa77 | |
parent | CMake: Update for liblzma_*.map files and fix wrong common_w32res.rc dep. (diff) | |
download | xz-e7a7ac744eb0f890ef52388de838596ef566c73f.tar.xz |
CMake: Clarify a comment about Windows symlinks without file extension.
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 90939c2b..62d349ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -711,10 +711,9 @@ if(NOT MSVC AND HAVE_GETOPT_LONG) # Create symlinks in the build directory and then install them. # - # FIXME? On OSes where executables have a suffix like .exe, this - # will create links like unxz -> xz.exe which is correct on Cygwin - # but perhaps on some other cases unxz.suffix -> xz.suffix would - # be the corrent thing? + # The symlinks do not likely need any special extension since + # even on Windows the symlink can still be executed without + # the .exe extension. foreach(LINK IN LISTS XZ_LINKS) add_custom_target("${LINK}" ALL "${CMAKE_COMMAND}" -E create_symlink |