Skip to content

Commit 5a5e0a7

Browse files
authored
Merge pull request #45 from JanCaha/development
fix build
2 parents f152c5f + 1e3b21b commit 5a5e0a7

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/create_releases.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
mkdir docker/install
167167
mv viewshed_*.deb docker/install/
168168
169-
- uses: robinraju/release-downloader@v1.8
169+
- uses: robinraju/release-downloader@v1
170170
with:
171171
repository: "JanCaha/cpp-simplerasters"
172172
latest: true

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.20.0)
22

3-
project(viewshed VERSION 4.0.0 DESCRIPTION "C++ Viewshed library based on GDAL and Qt" LANGUAGES CXX)
3+
project(viewshed VERSION 4.0.1 DESCRIPTION "C++ Viewshed library based on GDAL and Qt" LANGUAGES CXX)
44

55
SET(LIBRARY_NAME "viewshed")
66

@@ -18,6 +18,8 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
1818
set(CMAKE_CXX_STANDARD 20)
1919
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2020

21+
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
22+
2123
if(CMAKE_VERSION VERSION_LESS "3.7.0")
2224
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2325
endif()

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
viewshed (4.0.1-0) jammy; urgency=low
2+
3+
* fix build setting
4+
5+
-- Jan Caha <jan.caha@outlook.com> Tue, 21 May 2024 12:58:57 +0200
6+
17
viewshed (4.0.0-0) jammy; urgency=low
28

39
* add functions to calculate visibility raster (mask) as fast alternative

src/library/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ configure_file(
8484
configure_file(
8585
../../include/viewshed/templates/viewshedlibrary.in
8686
${CMAKE_SOURCE_DIR}/include/viewshed/viewshedlibrary.h
87-
)
87+
)

0 commit comments

Comments
 (0)