[cmake-developers] Shared library under Windows and CMake: DLL not found before installation
Brad King
brad.king at kitware.com
Wed Feb 6 15:11:43 EST 2019
On 2/6/19 2:40 PM, Joachim Wuttke wrote:
> And combine it with
>
> ```
> link_directories(BEFORE ${PROJECT_BINARY_DIR}/bin)
> ```
>
> so that tests find the libraries?
No. CMAKE_RUNTIME_OUTPUT_DIRECTORY only affects the locations of
the .dll files, not .a/.so/.lib. Also CMake already knows where
the library files will be and links via absolute path. Link
directories are almost never needed.
> Anyway, my problem is not at link time, but when _executing_ a test.
> Is there a canonical way of manipulating the Windows PATH from CMake?
No. In general one should not depend on PATH for .dll locations
within your own project.
-Brad
More information about the cmake-developers
mailing list