Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ project(PluginExample VERSION 1.0 LANGUAGES CXX)
find_package(Sofa.Component.Visual REQUIRED) # Needed for VisualModelImpl

## Optional dependencies
sofa_find_package(Sofa.GUI.Qt)
sofa_find_package(Qt5 COMPONENTS Core) # Dependency to Qt5Core (needed for qt5_wrap_cpp)
sofa_find_package(Sofa.GUI.Qt QUIET)
sofa_find_package(Qt5 COMPONENTS Core QUIET) # Dependency to Qt5Core (needed for qt5_wrap_cpp)

# List all files
set(PLUGINEXAMPLE_SRC_DIR src/PluginExample)
Expand Down
Loading