I'm now trying to follow the Deployment | Build with CMake 6.8.2 doc (see here). It took me a long time to understand that it is not done with Qt Creator interactively but on a terminal command line. I changed my CMakeLists.txt to add the needed lines provided by the doc :
cmake_minimum_required(VERSION 3.22)
project(Deplieur VERSION 0.1 LANGUAGES CXX)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Widgets LinguistTools)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets LinguistTools)
find_package(Qt6 REQUIRED COMPONENTS Network)
find_package(Qt6 REQUIRED COMPONENTS Core)
qt_standard_project_setup()
set(TS_FILES Deplieur_fr_FR.ts)
set(PROJECT_SOURCES
main.cpp
mainwindow.cpp
${TS_FILES}
)
qt_add_executable(Deplieur
MANUAL_FINALIZATION
${PROJECT_SOURCES}
mainwindow.h
resources.qrc
depliage.h depliage.cpp
mat4x4.h mat4x4.cpp
vec3d.h vec3d.cpp
triangle2d.h triangle2d.cpp
depliagescene.h depliagescene.cpp
depliagevue3d.h depliagevue3d.cpp
triangleitem2d.h triangleitem2d.cpp
triangleitem3d.h triangleitem3d.cpp
facette.h facette.cpp
depliagevue2d.h depliagevue2d.cpp
piecepolygonitem.h piecepolygonitem.cpp
pieceligneitem.h pieceligneitem.cpp
piecelangitem.h piecelangitem.cpp
piecenumitem.h piecenumitem.cpp
filedownloader.h filedownloader.cpp
)
qt_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TS_FILES})
target_link_libraries(Deplieur PRIVATE Qt${QT_VERSION_MAJOR}::Widgets)
target_link_libraries(Deplieur PRIVATE Qt6::Network)
target_link_libraries(Deplieur PRIVATE Qt6::Core)
#target_link_options(Deplieur PUBLIC -sASYNCIFY -Os)
set_target_properties(Deplieur PROPERTIES
${BUNDLE_ID_OPTION}
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
MACOSX_BUNDLE TRUE
WIN32_EXECUTABLE TRUE
)
include(GNUInstallDirs)
install(TARGETS Deplieur
BUNDLE DESTINATION .
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
qt_finalize_executable(Deplieur)
qt_generate_deploy_app_script(
TARGET Deplieur
OUTPUT_SCRIPT deploy_script
NO_UNSUPPORTED_PLATFORM_ERROR
)
install(SCRIPT ${deploy_script})
But when I run (from my release directory)
ninja install
or
cmake --install .
there's an error, apparently a path to qt.conf is malformed, so I certainly did something wrong or didn't do something needed, but I don't see what. I must say that it is a process that I never used before, and if I was able to learn C++ for that project, I'm not sure that I can also teach myself all those system tools.
first time I ran ninja install
gilboonet@GigiMacBookPro:~/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release$ ninja install
[0/2] Re-checking globbed directories...
-- GLOB mismatch!
-- GLOB mismatch!
[1/2] Re-running CMake...
-- Configuring done (0.4s)
-- Generating done (0.0s)
-- Build files have been written to: /home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release
[0/2] Re-checking globbed directories...
[0/1] Install the project...
-- Install configuration: "Release"
-- Up-to-date: /home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/Deplieur
-- Writing /usr/local//home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/qt.conf
CMake Error at /home/gilboonet/Qt/6.8.2/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake:93 (file):
file failed to open for writing (No such file or directory):
/usr/local//home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/qt.conf
Call Stack (most recent call first):
/home/gilboonet/Qt/6.8.2/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake:405 (qt6_deploy_qt_conf)
.qt/deploy_Deplieur_8df5c22dfa.cmake:5 (qt6_deploy_runtime_dependencies)
cmake_install.cmake:74 (include)
FAILED: CMakeFiles/install.util
second time I ran it
gilboonet@GigiMacBookPro:~/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release$ ninja install
[0/2] Re-checking globbed directories...
-- GLOB mismatch!
-- GLOB mismatch!
[1/2] Re-running CMake...
-- Configuring done (0.4s)
-- Generating done (0.0s)
-- Build files have been written to: /home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release
[0/2] Re-checking globbed directories...
[0/1] Install the project...
-- Install configuration: "Release"
-- Up-to-date: /home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/Deplieur
-- Writing /usr/local//home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/qt.conf
CMake Error at /home/gilboonet/Qt/6.8.2/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake:93 (file):
file failed to open for writing (No such file or directory):
/usr/local//home/gilboonet/Documents/dev/C++/Deplieur/build/Desktop_Qt_6_8_2-Release/bin/qt.conf
Call Stack (most recent call first):
/home/gilboonet/Qt/6.8.2/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake:405 (qt6_deploy_qt_conf)
.qt/deploy_Deplieur_8df5c22dfa.cmake:5 (qt6_deploy_runtime_dependencies)
cmake_install.cmake:74 (include)
FAILED: CMakeFiles/install.util