Skip to content
Snippets Groups Projects
Commit 12fa0ec7 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

minor qt moc debug change

parent 75d9b384
No related branches found
No related tags found
1 merge request!62Ice Deployment in Scenario Manager and improved LogViewe
......@@ -59,7 +59,7 @@ function(armarx_gui_library PLUGIN_NAME SOURCES QT_MOC_HDRS QT_UIS QT_RESOURCES
ARGS "-DPROJECT_NAME=${PROJECT_NAME}" "-DDIR=${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_NAME}_autogen/include/"
"-DCORRECT_INCLUDE=${CORRECT_INCLUDE}" "-DPROJECT_SOURCE_DIR=${CMAKE_SOURCE_DIR}/source"
"-P" "${ArmarXGui_CMAKE_DIR}/check_qt_moc_includes.cmake"
COMMENT "Checking qt moc includes "
#COMMENT "Checking qt moc includes"
)
......
......@@ -2,6 +2,7 @@ file(GLOB_RECURSE file_list ${DIR} LIST_DIRECTORIES FALSE RELATIVE ${DIR} ui_*.h
foreach(header_file IN LISTS file_list)
if(NOT header_file MATCHES "${PROJECT_NAME}/")
file(MAKE_DIRECTORY "${DIR}${CORRECT_INCLUDE}")
message("Moving ${DIR}${header_file} to ${DIR}${CORRECT_INCLUDE}/${header_file}")
file(RENAME "${DIR}${header_file}" "${DIR}${CORRECT_INCLUDE}/${header_file}")
execute_process(COMMAND bash "-c" "find ${PROJECT_SOURCE_DIR} -type f -exec sed -i 's~include \\\"${header_file}\\\"~include <${CORRECT_INCLUDE}/${header_file}>~g' {} +")
message(WARNING "The include for ${header_file} needs to use the full relative path, instead of a path without any directories. This is needed for correct installation. The correct include might be (or similar, subfolders might be missing in the proposed include) \n'#include <${CORRECT_INCLUDE}/${header_file}>'")
......
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