File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ project(Xpano)
4
4
OPTION (BUILD_TESTING "Build tests" OFF )
5
5
OPTION (XPANO_STATIC_VCRT "Build with static VCRT" OFF )
6
6
OPTION (XPANO_WITH_MULTIBLEND "Build with multiblend" ON )
7
- OPTION (XPANO_INSTALL_DEPENDENCIES "Install all dependencies" OFF )
8
7
9
8
if (XPANO_STATIC_VCRT)
10
9
set (CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>" )
@@ -160,14 +159,9 @@ else()
160
159
endif ()
161
160
162
161
install (TARGETS
163
- Xpano RUNTIME_DEPENDENCY_SET XpanoDeps RUNTIME
162
+ Xpano RUNTIME
164
163
)
165
164
166
- if (XPANO_INSTALL_DEPENDENCIES)
167
- set_target_properties (Xpano PROPERTIES INSTALL_RPATH "\$ {ORIGIN}/../lib" )
168
- install (RUNTIME_DEPENDENCY_SET XpanoDeps DESTINATION "${CMAKE_INSTALL_PREFIX} /lib" )
169
- endif ()
170
-
171
165
install (FILES
172
166
"$<TARGET_RUNTIME_DLLS:Xpano>"
173
167
TYPE BIN
Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ cp opencv/LICENSE licenses/opencv-license.txt
10
10
11
11
cmake -B build \
12
12
-DCMAKE_INSTALL_PREFIX=/usr \
13
- -DXPANO_INSTALL_DEPENDENCIES=ON \
14
- -DXPANO_EXTRA_LICENSES=licenses
13
+ -DXPANO_EXTRA_LICENSES=licenses \
14
+ -DNFD_PORTAL=ON
15
15
16
16
DESTDIR=AppDir cmake --build build -j $( nproc) --target install
17
17
18
+ export LD_LIBRARY_PATH=SDL/install/lib:exiv2/install/lib:opencv/install/lib
19
+
18
20
linuxdeploy-x86_64.AppImage --appdir build/AppDir --output appimage
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace xpano::version {
9
9
10
10
constexpr int kMajor = 0 ;
11
11
constexpr int kMinor = 16 ;
12
- constexpr int kPatch = 1 ;
12
+ constexpr int kPatch = 3 ;
13
13
14
14
using Triplet = std::tuple<int , int , int >;
15
15
You can’t perform that action at this time.
0 commit comments