aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@gmail.com>2019-05-12 22:20:56 +0200
committerCristian Adam <cristian.adam@gmail.com>2019-05-17 13:33:28 +0000
commitd855b84c5df923394ace3bb91dab379f7e0daa34 (patch)
treee184ccdf5724151465a1653f9fc308af43293de8 /src/app
parentf872a95fddd2690bb6953a17e48935c1b12d83d9 (diff)
Qt Creator CMake port
Based on Tobias Hunger's work from a few months ago. The CMake configuration needs libclang and Qt paths specified as CMAKE_PREFIX_PATH. Auto tests are run with "ctest". At the moment the pass rate is 87%. Change-Id: Iba98e39bf22077d52706dce6c85986be67a6eab0 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/CMakeLists.txt19
-rw-r--r--src/app/app_version.h.cmakein53
2 files changed, 72 insertions, 0 deletions
diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt
new file mode 100644
index 0000000000..8ae808e2ff
--- /dev/null
+++ b/src/app/CMakeLists.txt
@@ -0,0 +1,19 @@
+configure_file(app_version.h.cmakein app_version.h ESCAPE_QUOTES)
+
+add_qtc_executable(qtcreator
+ DEFINES IDE_LIBRARY_BASENAME=\"${IDE_LIBRARY_BASE_PATH}\"
+ DEPENDS Aggregation ExtensionSystem Qt5::Core Qt5::Widgets Utils shared_qtsingleapplication app_version
+ SOURCES
+ main.cpp
+ ../tools/qtcreatorcrashhandler/crashhandlersetup.cpp ../tools/qtcreatorcrashhandler/crashhandlersetup.h
+ PROPERTIES
+ WIN32_EXECUTABLE ON
+ MACOSX_BUNDLE ON
+ OUTPUT_NAME "${IDE_APP_TARGET}"
+ DESTINATION "${IDE_APP_PATH}"
+)
+
+add_custom_command(TARGET qtcreator POST_BUILD
+ COMMAND "${CMAKE_COMMAND}" -E copy_directory
+ "${PROJECT_SOURCE_DIR}/share/qtcreator"
+ "${PROJECT_BINARY_DIR}/${IDE_DATA_PATH}")
diff --git a/src/app/app_version.h.cmakein b/src/app/app_version.h.cmakein
new file mode 100644
index 0000000000..86074a22e9
--- /dev/null
+++ b/src/app/app_version.h.cmakein
@@ -0,0 +1,53 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#pragma once
+
+#define IDE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR}
+#define IDE_VERSION_MINOR ${PROJECT_VERSION_MINOR}
+#define IDE_VERSION_RELEASE ${PROJECT_VERSION_PATCH}
+
+#cmakedefine IDE_REVISION
+
+namespace Core {
+namespace Constants {
+
+const char IDE_VERSION_LONG[] = "${PROJECT_VERSION}";
+const char IDE_AUTHOR[] = "The Qt Company Ltd";
+const char IDE_YEAR[] = "${IDE_COPYRIGHT_YEAR}";
+
+const char IDE_DISPLAY_NAME[] = "${IDE_DISPLAY_NAME}";
+const char IDE_ID[] = "${IDE_ID}";
+const char IDE_CASED_ID[] = "${IDE_CASED_ID}";
+
+const char IDE_VERSION_DISPLAY[] = "${IDE_VERSION_DISPLAY}";
+const char IDE_REVISION_STR[] = "${IDE_REVISION_STR}";
+
+// changes the path where the settings are saved to
+const char IDE_SETTINGSVARIANT_STR[] = "${IDE_SETTINGSVARIANT}";
+const char IDE_COPY_SETTINGS_FROM_VARIANT_STR[] = "${IDE_COPY_SETTINGSVARIANT}";
+
+} // Constants
+} // Core