1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 10:47:59 +08:00

KWSys 2023-02-07 (db9470d4)

Code extracted from:

    https://gitlab.kitware.com/utils/kwsys.git

at commit db9470d4271ef65864a374a7a2f58f9789573903 (master).

Upstream Shortlog
-----------------

Ben Boeckel (1):
      46f47034 SharedForward: Drop this component of KWSys

Brad King (2):
      bfa688b5 SystemTools: Drop optional FindProgramPath arguments
      093d6e45 DynamicLoader: Update test to avoid using CMAKE_INTDIR
This commit is contained in:
KWSys Upstream
2023-02-07 08:49:53 -05:00
committed by Brad King
parent 187389d9e1
commit 48fd1b3887
6 changed files with 9 additions and 949 deletions

View File

@@ -53,9 +53,9 @@ static std::string GetLibName(const char* lname, const char* subdir = nullptr)
slname += "/";
slname += subdir;
}
#ifdef CMAKE_INTDIR
#ifdef BUILD_CONFIG
slname += "/";
slname += CMAKE_INTDIR;
slname += BUILD_CONFIG;
#endif
slname += "/";
slname += kwsys::DynamicLoader::LibPrefix();