We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd33511 + 3483650 commit 2d96719Copy full SHA for 2d96719
CMakeLists.txt
@@ -0,0 +1,8 @@
1
+# CMake configuration for linuxdeployqt
2
+# Not meant to replace the qmake build system, but for use with CMake based IDEs.
3
+
4
+cmake_minimum_required(VERSION 3.2)
5
6
+project(linuxdeployqt)
7
8
+add_subdirectory(tools/linuxdeployqt)
tools/linuxdeployqt/CMakeLists.txt
@@ -0,0 +1,7 @@
+set(CMAKE_AUTOMOC ON)
+find_package(Qt5 REQUIRED COMPONENTS Core)
+add_executable(linuxdeployqt main.cpp shared.cpp)
+target_include_directories(linuxdeployqt PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
+target_link_libraries(linuxdeployqt Qt5::Core)
0 commit comments