diff options
author | Joerg Bornemann <[email protected]> | 2025-04-02 09:07:49 +0200 |
---|---|---|
committer | Joerg Bornemann <[email protected]> | 2025-04-03 20:00:13 +0200 |
commit | 44224802604cadeaaef3f938d48458cd718bb15d (patch) | |
tree | 41295c9dea6f8a3e753fd88b3f264d740186d71b | |
parent | bfb7a47e138b2c91a319da5aefe3d6b670c3d921 (diff) |
CMake: Make the plugandpaint example runnable without installation
The extrafilters DLL must be placed in the plugins directory to be
found. The QMake build is correct in that regard.
Change-Id: Ic1652e008148f3dfa36558b82d8bc8ddb08c1e99
Reviewed-by: Oliver Wolff <[email protected]>
-rw-r--r-- | tests/manual/examples/widgets/tools/plugandpaint/plugins/extrafilters/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/examples/widgets/tools/plugandpaint/plugins/extrafilters/CMakeLists.txt b/tests/manual/examples/widgets/tools/plugandpaint/plugins/extrafilters/CMakeLists.txt index ead67decd5a..6db9c30c324 100644 --- a/tests/manual/examples/widgets/tools/plugandpaint/plugins/extrafilters/CMakeLists.txt +++ b/tests/manual/examples/widgets/tools/plugandpaint/plugins/extrafilters/CMakeLists.txt @@ -7,7 +7,7 @@ qt_add_plugin(pnp_extrafilters ) set_target_properties(pnp_extrafilters PROPERTIES - LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/app" + LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/plugins" ) target_include_directories(pnp_extrafilters PRIVATE |