"vscode:/vscode.git/clone" did not exist on "a01ddf72034b184f1b15341fe8cc7c02ea30bcb9"
Commit 40f67e33 authored by Christopher Bruns's avatar Christopher Bruns
Browse files

NML cmake install change to avoid cmake error on linux.

parent 959869fe
......@@ -55,5 +55,9 @@ if(BUILD_TESTING)
add_subdirectory(test)
endif(BUILD_TESTING)
install(TARGETS NormalModeLangevin RUNTIME DESTINATION lib/plugins)
if(WIN32)
# install DLL but not LIB
install(TARGETS NormalModeLangevin RUNTIME DESTINATION lib/plugins)
else(WIN32)
install(TARGETS NormalModeLangevin LIBRARY DESTINATION lib/plugins)
endif(WIN32)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment