Skip to content
Snippets Groups Projects
Commit 5e4613b1 authored by Roman Tolchenov's avatar Roman Tolchenov
Browse files

Fix pv plugin directory name in cmakelists. Re #20381

parent 93c02be8
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ set ( _plugin_filename ${CMAKE_SHARED_LIBRARY_PREFIX}NonOrthogonalSource${CMAKE_
if (CMAKE_GENERATOR MATCHES "Visual Studio")
set ( _pv_library_output_dir ${ParaView_DIR}/bin )
# add_custom_command doesn't support generator expressions for the OUTPUT argument
string ( REPLACE "<CONFIG>" "\${CMAKE_CFG_INTDIR}" _plugin_library_output ${PVPLUGINS_LIBRARY_OUTPUT_DIRECTORY} )
string ( REPLACE "$<CONFIG>" "${CMAKE_CFG_INTDIR}" _plugin_library_output ${PVPLUGINS_LIBRARY_OUTPUT_DIRECTORY} )
else ()
set ( _pv_library_output_dir ${ParaView_DIR}/lib )
set ( _plugin_library_output ${PVPLUGINS_LIBRARY_OUTPUT_DIRECTORY} )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment