Browse Source
Not meant to replace the qmake build system, but for use with CMake based IDEs.master
TheAssassin
7 years ago
2 changed files with 15 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
# CMake configuration for linuxdeployqt |
|||
# Not meant to replace the qmake build system, but for use with CMake based IDEs. |
|||
|
|||
cmake_minimum_required(VERSION 3.2) |
|||
|
|||
project(linuxdeployqt) |
|||
|
|||
add_subdirectory(tools/linuxdeployqt) |
@ -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) |
Loading…
Reference in new issue