-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the tutorial qt_visualizer compilation issue: qt4 -> qt5. #2051
Changes from 2 commits
bb0eb9d
56b6306
6ee355b
db630a6
ad0e25a
6cb6424
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,32 @@ | ||
cmake_minimum_required (VERSION 2.6 FATAL_ERROR) | ||
cmake_minimum_required(VERSION 2.8.11) | ||
|
||
project(pcl_colorize_cloud) | ||
|
||
# init_qt: Let's do the CMake job for us | ||
set(CMAKE_AUTOMOC ON) # For meta object compiler | ||
set(CMAKE_AUTORCC ON) # Resource files | ||
set(CMAKE_AUTOUIC ON) # UI files | ||
|
||
# Find includes in corresponding build directories | ||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# Find the QtWidgets library | ||
find_package (Qt5 REQUIRED Widgets) | ||
|
||
project (pcl-colorize_cloud) | ||
find_package (Qt4 REQUIRED) | ||
find_package (VTK REQUIRED) | ||
find_package (PCL 1.7.1 REQUIRED) | ||
|
||
include_directories (${PCL_INCLUDE_DIRS}) | ||
link_directories (${PCL_LIBRARY_DIRS}) | ||
add_definitions (${PCL_DEFINITIONS}) | ||
# Fix a compilation bug under ubuntu 16.04 (Xenial) | ||
list(REMOVE_ITEM PCL_LIBRARIES "vtkproj4") | ||
|
||
set (project_SOURCES main.cpp pclviewer.cpp) | ||
set (project_HEADERS pclviewer.h) | ||
set (project_FORMS pclviewer.ui) | ||
set (VTK_LIBRARIES vtkRendering vtkGraphics vtkHybrid QVTK) | ||
|
||
QT4_WRAP_CPP (project_HEADERS_MOC ${project_HEADERS}) | ||
QT4_WRAP_UI (project_FORMS_HEADERS ${project_FORMS}) | ||
include_directories(${PCL_INCLUDE_DIRS}) | ||
link_directories(${PCL_LIBRARY_DIRS}) | ||
add_definitions(${PCL_DEFINITIONS}) | ||
|
||
INCLUDE (${QT_USE_FILE}) | ||
ADD_DEFINITIONS (${QT_DEFINITIONS}) | ||
set (project_SOURCES main.cpp pclviewer.cpp) | ||
|
||
ADD_EXECUTABLE (colorize_cloud ${project_SOURCES} | ||
${project_FORMS_HEADERS} | ||
${project_HEADERS_MOC}) | ||
ADD_EXECUTABLE (pcl_colorize_cloud ${project_SOURCES}) | ||
|
||
TARGET_LINK_LIBRARIES (colorize_cloud ${QT_LIBRARIES} ${PCL_LIBRARIES} ${VTK_LIBRARIES}) | ||
TARGET_LINK_LIBRARIES (${PROJECT_NAME} ${QT_LIBRARIES} ${PCL_LIBRARIES}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe explicitly linking against Also, since you are rewriting most of the content anyway, can you please convert CMake function calls to lowercase? Uppercasing is an outdated practice. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok. Should I also take care of spaces before parenthesis? |
||
|
||
qt5_use_modules(${PROJECT_NAME} Widgets) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,32 @@ | ||
cmake_minimum_required (VERSION 2.6 FATAL_ERROR) | ||
cmake_minimum_required(VERSION 2.8.11) | ||
|
||
project(pcl_visualizer) | ||
|
||
# init_qt: Let's do the CMake job for us | ||
set(CMAKE_AUTOMOC ON) # For meta object compiler | ||
set(CMAKE_AUTORCC ON) # Resource files | ||
set(CMAKE_AUTOUIC ON) # UI files | ||
|
||
# Find includes in corresponding build directories | ||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# Find the QtWidgets library | ||
find_package (Qt5 REQUIRED Widgets) | ||
|
||
project (pcl-visualizer) | ||
find_package (Qt4 REQUIRED) | ||
find_package (VTK REQUIRED) | ||
find_package (PCL 1.7.1 REQUIRED) | ||
|
||
include_directories (${PCL_INCLUDE_DIRS}) | ||
link_directories (${PCL_LIBRARY_DIRS}) | ||
add_definitions (${PCL_DEFINITIONS}) | ||
# Fix a compilation bug under ubuntu 16.04 (Xenial) | ||
list(REMOVE_ITEM PCL_LIBRARIES "vtkproj4") | ||
|
||
set (project_SOURCES main.cpp pclviewer.cpp) | ||
set (project_HEADERS pclviewer.h) | ||
set (project_FORMS pclviewer.ui) | ||
set (VTK_LIBRARIES vtkRendering vtkGraphics vtkHybrid QVTK) | ||
|
||
QT4_WRAP_CPP (project_HEADERS_MOC ${project_HEADERS}) | ||
QT4_WRAP_UI (project_FORMS_HEADERS ${project_FORMS}) | ||
include_directories(${PCL_INCLUDE_DIRS}) | ||
link_directories(${PCL_LIBRARY_DIRS}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure this is necessary There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same. |
||
add_definitions(${PCL_DEFINITIONS}) | ||
|
||
INCLUDE (${QT_USE_FILE}) | ||
ADD_DEFINITIONS (${QT_DEFINITIONS}) | ||
set (project_SOURCES main.cpp pclviewer.cpp) | ||
|
||
ADD_EXECUTABLE (pcl_visualizer ${project_SOURCES} | ||
${project_FORMS_HEADERS} | ||
${project_HEADERS_MOC}) | ||
ADD_EXECUTABLE (pcl_visualizer ${project_SOURCES}) | ||
|
||
TARGET_LINK_LIBRARIES (pcl_visualizer ${QT_LIBRARIES} ${PCL_LIBRARIES} ${VTK_LIBRARIES}) | ||
TARGET_LINK_LIBRARIES (${PROJECT_NAME} ${QT_LIBRARIES} ${PCL_LIBRARIES}) | ||
|
||
qt5_use_modules(${PROJECT_NAME} Widgets) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Effectively, the
link_directories
instruction is not required.