-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from kossebau/installmakeconfig
Install CMake config files
- Loading branch information
Showing
6 changed files
with
81 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.2) | ||
|
||
project(ProxyUpdate) | ||
|
||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# find installed library | ||
find_package(AppImageUpdaterBridge) | ||
|
||
add_executable(ProxyUpdate main.cc) | ||
|
||
target_link_libraries(ProxyUpdate PRIVATE AppImageUpdaterBridge) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.2) | ||
|
||
project(SimpleUpdate) | ||
|
||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# find installed library | ||
find_package(AppImageUpdaterBridge) | ||
|
||
add_executable(SimpleUpdate main.cc TextProgressBar.cc) | ||
|
||
target_link_libraries(SimpleUpdate PRIVATE AppImageUpdaterBridge) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.2) | ||
|
||
project(SimpleUpdateGUI) | ||
|
||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
# find installed library | ||
find_package(AppImageUpdaterBridge) | ||
|
||
add_executable(SimpleUpdateGUI main.cc) | ||
|
||
target_link_libraries(SimpleUpdateGUI PRIVATE AppImageUpdaterBridge) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@PACKAGE_INIT@ | ||
|
||
include(CMakeFindDependencyMacro) | ||
find_dependency(Qt5Core @MIN_QT_VERSION@) | ||
find_dependency(Qt5Network @MIN_QT_VERSION@) | ||
@PACKAGE_FIND_DEPENDENCY_QTWIDGETS@ | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/AppImageUpdaterBridgeTargets.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters