Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 22f53dc

Browse files
committedFeb 5, 2024
[build] SwigBinding: Compile on Windows
1 parent a5579cf commit 22f53dc

File tree

12 files changed

+24
-16
lines changed

12 files changed

+24
-16
lines changed
 

‎src/aliceVision/CMakeLists.txt

+10-9
Original file line numberDiff line numberDiff line change
@@ -85,48 +85,49 @@ endif()
8585
if(ALICEVISION_BUILD_SWIG_BINDING)
8686
set(UseSWIG_TARGET_NAME_PREFERENCE STANDARD)
8787
set_property(SOURCE aliceVision.i PROPERTY CPLUSPLUS ON)
88-
set_property(SOURCE aliceVision.i PROPERTY SWIG_MODULE_NAME aliceVision)
88+
set_property(SOURCE aliceVision.i PROPERTY SWIG_MODULE_NAME pyAliceVision)
8989

90-
swig_add_library(aliceVision
90+
swig_add_library(pyAliceVision
9191
TYPE MODULE
9292
LANGUAGE python
9393
SOURCES aliceVision.i
9494
)
9595

9696
set_property(
97-
TARGET aliceVision
97+
TARGET pyAliceVision
9898
PROPERTY SWIG_COMPILE_OPTIONS -doxygen
9999
)
100100

101-
target_include_directories(aliceVision
101+
target_include_directories(pyAliceVision
102102
PRIVATE
103103
../include
104104
${ALICEVISION_ROOT}/include
105105
${Python3_INCLUDE_DIRS}
106106
${Python3_NumPy_INCLUDE_DIRS}
107107
)
108108
set_property(
109-
TARGET aliceVision
109+
TARGET pyAliceVision
110110
PROPERTY SWIG_USE_TARGET_INCLUDE_DIRECTORIES ON
111111
)
112112
set_property(
113-
TARGET aliceVision
113+
TARGET pyAliceVision
114114
PROPERTY COMPILE_OPTIONS -std=c++17
115115
)
116116

117-
target_link_libraries(aliceVision
117+
target_link_libraries(pyAliceVision
118118
PUBLIC
119119
aliceVision_numeric
120+
${Python3_LIBRARIES}
120121
)
121122
install(
122123
TARGETS
123-
aliceVision
124+
pyAliceVision
124125
DESTINATION
125126
${CMAKE_INSTALL_PREFIX}
126127
)
127128
install(
128129
FILES
129-
${CMAKE_CURRENT_BINARY_DIR}/aliceVision.py
130+
${CMAKE_CURRENT_BINARY_DIR}/pyAliceVision.py
130131
DESTINATION
131132
${CMAKE_INSTALL_PREFIX}
132133
)

‎src/aliceVision/camera/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ if (ALICEVISION_BUILD_SWIG_BINDING)
9090
target_link_libraries(camera
9191
PUBLIC
9292
aliceVision_camera
93+
${Python3_LIBRARIES}
9394
)
9495

9596
install(

‎src/aliceVision/camera/Camera.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// v. 2.0. If a copy of the MPL was not distributed with this file,
55
// You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
%module (module="aliceVision") camera
7+
%module (module="pyAliceVision") camera
88

99
%include <aliceVision/camera/IntrinsicBase.i>
1010

‎src/aliceVision/global.i

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
%}
2424

2525
%inline %{
26-
typedef long unsigned int size_t;
26+
//typedef long unsigned int size_t;
2727
typedef uint32_t IndexT;
2828
%}
2929

@@ -37,7 +37,9 @@
3737

3838
%template(IndexTSet) std::set<IndexT>;
3939

40-
%template(SizeTPair) std::pair<size_t, size_t>;
40+
//%template(SizeTPair) std::pair<size_t, size_t>;
41+
%template(LongUintPair) std::pair<long unsigned int, long unsigned int>;
42+
%template(UintPair) std::pair<unsigned int, unsigned int>;
4143

4244
// As defined in aliceVision/types.hpp
4345
%template(Pair) std::pair<IndexT, IndexT>;

‎src/aliceVision/hdr/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ if (ALICEVISION_BUILD_SWIG_BINDING)
8989
aliceVision_numeric
9090
aliceVision_image
9191
aliceVision_sfmData
92+
${Python3_LIBRARIES}
9293
)
9394

9495
install(

‎src/aliceVision/hdr/Hdr.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
// v. 2.0. If a copy of the MPL was not distributed with this file,
55
// You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
%module (module="aliceVision") hdr
7+
%module (module="pyAliceVision") hdr
88

99
%include <aliceVision/hdr/Brackets.i>

‎src/aliceVision/sensorDB/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ if (ALICEVISION_BUILD_SWIG_BINDING)
6363
target_link_libraries(sensorDB
6464
PUBLIC
6565
aliceVision_sensorDB
66+
${Python3_LIBRARIES}
6667
)
6768

6869
install(

‎src/aliceVision/sensorDB/SensorDB.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// v. 2.0. If a copy of the MPL was not distributed with this file,
55
// You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
%module (module="aliceVision") sensorDB
7+
%module (module="pyAliceVision") sensorDB
88

99
%include <aliceVision/sensorDB/Datasheet.i>
1010

‎src/aliceVision/sfmData/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ if (ALICEVISION_BUILD_SWIG_BINDING)
8888
PUBLIC
8989
aliceVision_sfmData
9090
aliceVision_camera
91+
${Python3_LIBRARIES}
9192
)
9293

9394
install(

‎src/aliceVision/sfmData/SfMData.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// v. 2.0. If a copy of the MPL was not distributed with this file,
55
// You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
%module (module="aliceVision") sfmData
7+
%module (module="pyAliceVision") sfmData
88

99
%include <aliceVision/sfmData/CameraPose.i>
1010
%include <aliceVision/sfmData/Constraint2D.i>

‎src/aliceVision/sfmDataIO/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ if (ALICEVISION_BUILD_SWIG_BINDING)
131131
target_link_libraries(sfmDataIO
132132
PUBLIC
133133
aliceVision_sfmDataIO
134+
${Python3_LIBRARIES}
134135
)
135136

136137
install(

‎src/aliceVision/sfmDataIO/SfMDataIO.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// v. 2.0. If a copy of the MPL was not distributed with this file,
55
// You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
%module (module="aliceVision") sfmDataIO
7+
%module (module="pyAliceVision") sfmDataIO
88

99
%include <std_string.i>
1010
%include <aliceVision/sfmDataIO/sfmDataIO.hpp>

0 commit comments

Comments
 (0)
Please sign in to comment.