Skip to content

Commit

Permalink
point cloud functions (kind of) working
Browse files Browse the repository at this point in the history
- point cloud transform works
- voxel grid filter works
- plane detection working, not ideal
  • Loading branch information
NeilNie committed Apr 1, 2019
1 parent 3d3e9f0 commit 036cc1c
Show file tree
Hide file tree
Showing 41 changed files with 856 additions and 2,768 deletions.
263 changes: 80 additions & 183 deletions .idea/workspace.xml

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions ros/frames.gv
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
digraph G {
"zed_camera_center" -> "zed_left_camera_frame"[label="Broadcaster: /zed_state_publisher\nAverage rate: 10000.000 Hz\nMost recent transform: 0.000 ( 1554133821.997 sec old)\nBuffer length: 0.000 sec\n"];
"odom" -> "zed_camera_center"[label="Broadcaster: /zed_wrapper_node\nAverage rate: 4940000.000 Hz\nMost recent transform: 1554133812.622 ( 9.375 sec old)\nBuffer length: 0.000 sec\n"];
"zed_left_camera_frame" -> "zed_left_camera_optical_frame"[label="Broadcaster: /zed_state_publisher\nAverage rate: 10000.000 Hz\nMost recent transform: 0.000 ( 1554133821.997 sec old)\nBuffer length: 0.000 sec\n"];
"zed_camera_center" -> "zed_right_camera_frame"[label="Broadcaster: /zed_state_publisher\nAverage rate: 10000.000 Hz\nMost recent transform: 0.000 ( 1554133821.997 sec old)\nBuffer length: 0.000 sec\n"];
"zed_right_camera_frame" -> "zed_right_camera_optical_frame"[label="Broadcaster: /zed_state_publisher\nAverage rate: 10000.000 Hz\nMost recent transform: 0.000 ( 1554133821.997 sec old)\nBuffer length: 0.000 sec\n"];
"map" -> "odom"[label="Broadcaster: /zed_wrapper_node\nAverage rate: 4940000.000 Hz\nMost recent transform: 1554133812.622 ( 9.375 sec old)\nBuffer length: 0.000 sec\n"];
edge [style=invis];
subgraph cluster_legend { style=bold; color=black; label ="view_frames Result";
"Recorded at time: 1554133821.997"[ shape=plaintext ] ;
}->"map";
}
Binary file added ros/frames.pdf
Binary file not shown.
2,038 changes: 110 additions & 1,928 deletions ros/src/.idea/workspace.xml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ros/src/cmake-build-debug/CMakeFiles/Makefile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,7 @@ set(CMAKE_DEPEND_INFO_FILES
"point_cloud/CMakeFiles/topic_tools_generate_messages_py.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/topic_tools_generate_messages_nodejs.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/point_cloud_transform.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/std_srvs_generate_messages_py.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/std_srvs_generate_messages_nodejs.dir/DependInfo.cmake"
"point_cloud/CMakeFiles/std_srvs_generate_messages_cpp.dir/DependInfo.cmake"
Expand Down
107 changes: 73 additions & 34 deletions ros/src/cmake-build-debug/CMakeFiles/Makefile2

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ros/src/cmake-build-debug/CMakeFiles/TargetDirectories.txt
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/topic_tools_generate_messages_py.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/topic_tools_generate_messages_nodejs.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/point_cloud_transform.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/std_srvs_generate_messages_py.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/std_srvs_generate_messages_nodejs.dir
/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/CMakeFiles/install.dir
Expand Down
14 changes: 14 additions & 0 deletions ros/src/cmake-build-debug/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3196,6 +3196,19 @@ topic_tools_generate_messages_eus/fast:
$(MAKE) -f point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir/build.make point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir/build
.PHONY : topic_tools_generate_messages_eus/fast

#=============================================================================
# Target rules for targets named point_cloud_transform

# Build rule for target.
point_cloud_transform: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 point_cloud_transform
.PHONY : point_cloud_transform

# fast build rule for target.
point_cloud_transform/fast:
$(MAKE) -f point_cloud/CMakeFiles/point_cloud_transform.dir/build.make point_cloud/CMakeFiles/point_cloud_transform.dir/build
.PHONY : point_cloud_transform/fast

#=============================================================================
# Target rules for targets named std_srvs_generate_messages_py

Expand Down Expand Up @@ -4404,6 +4417,7 @@ help:
@echo "... topic_tools_generate_messages_py"
@echo "... topic_tools_generate_messages_nodejs"
@echo "... topic_tools_generate_messages_eus"
@echo "... point_cloud_transform"
@echo "... std_srvs_generate_messages_py"
@echo "... std_srvs_generate_messages_nodejs"
@echo "... std_srvs_generate_messages_cpp"
Expand Down
251 changes: 91 additions & 160 deletions ros/src/cmake-build-debug/Project.cbp

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CMAKE_PROGRESS_1 = 7
CMAKE_PROGRESS_2 =
CMAKE_PROGRESS_1 =
CMAKE_PROGRESS_2 = 7

Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
1
46 changes: 46 additions & 0 deletions ros/src/cmake-build-debug/point_cloud/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,21 @@ topic_tools_generate_messages_eus/fast:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir/build.make point_cloud/CMakeFiles/topic_tools_generate_messages_eus.dir/build
.PHONY : topic_tools_generate_messages_eus/fast

# Convenience name for target.
point_cloud/CMakeFiles/point_cloud_transform.dir/rule:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 point_cloud/CMakeFiles/point_cloud_transform.dir/rule
.PHONY : point_cloud/CMakeFiles/point_cloud_transform.dir/rule

# Convenience name for target.
point_cloud_transform: point_cloud/CMakeFiles/point_cloud_transform.dir/rule

.PHONY : point_cloud_transform

# fast build rule for target.
point_cloud_transform/fast:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/point_cloud_transform.dir/build.make point_cloud/CMakeFiles/point_cloud_transform.dir/build
.PHONY : point_cloud_transform/fast

# Convenience name for target.
point_cloud/CMakeFiles/std_srvs_generate_messages_py.dir/rule:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f CMakeFiles/Makefile2 point_cloud/CMakeFiles/std_srvs_generate_messages_py.dir/rule
Expand Down Expand Up @@ -614,6 +629,33 @@ src/planar_segmentation.cpp.s:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/planar_segmentation.dir/build.make point_cloud/CMakeFiles/planar_segmentation.dir/src/planar_segmentation.cpp.s
.PHONY : src/planar_segmentation.cpp.s

src/point_cloud_transform.o: src/point_cloud_transform.cpp.o

.PHONY : src/point_cloud_transform.o

# target to build an object file
src/point_cloud_transform.cpp.o:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/point_cloud_transform.dir/build.make point_cloud/CMakeFiles/point_cloud_transform.dir/src/point_cloud_transform.cpp.o
.PHONY : src/point_cloud_transform.cpp.o

src/point_cloud_transform.i: src/point_cloud_transform.cpp.i

.PHONY : src/point_cloud_transform.i

# target to preprocess a source file
src/point_cloud_transform.cpp.i:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/point_cloud_transform.dir/build.make point_cloud/CMakeFiles/point_cloud_transform.dir/src/point_cloud_transform.cpp.i
.PHONY : src/point_cloud_transform.cpp.i

src/point_cloud_transform.s: src/point_cloud_transform.cpp.s

.PHONY : src/point_cloud_transform.s

# target to generate assembly for a file
src/point_cloud_transform.cpp.s:
cd /home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug && $(MAKE) -f point_cloud/CMakeFiles/point_cloud_transform.dir/build.make point_cloud/CMakeFiles/point_cloud_transform.dir/src/point_cloud_transform.cpp.s
.PHONY : src/point_cloud_transform.cpp.s

# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
Expand All @@ -626,6 +668,7 @@ help:
@echo "... topic_tools_generate_messages_py"
@echo "... topic_tools_generate_messages_nodejs"
@echo "... topic_tools_generate_messages_eus"
@echo "... point_cloud_transform"
@echo "... std_srvs_generate_messages_py"
@echo "... std_srvs_generate_messages_nodejs"
@echo "... install"
Expand Down Expand Up @@ -658,6 +701,9 @@ help:
@echo "... src/planar_segmentation.o"
@echo "... src/planar_segmentation.i"
@echo "... src/planar_segmentation.s"
@echo "... src/point_cloud_transform.o"
@echo "... src/point_cloud_transform.i"
@echo "... src/point_cloud_transform.s"
.PHONY : help


Expand Down
89 changes: 89 additions & 0 deletions ros/src/cmake-build-debug/point_cloud/point_cloud.cbp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,92 @@
<DistClean command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="point_cloud_transform">
<Option output="/home/neil/Workspace/self-driving-golf-cart/ros/devel/lib/point_cloud/point_cloud_transform" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/home/neil/Workspace/self-driving-golf-cart/ros/devel/lib/point_cloud"/>
<Option object_output="./"/>
<Option type="1"/>
<Option compiler="gcc"/>
<Compiler>
<Add option="-DROS_BUILD_SHARED_LIBS=1"/>
<Add option="-DROS_PACKAGE_NAME=&quot;point_cloud&quot;"/>
<Add option="-DROSCONSOLE_BACKEND_LOG4CXX"/>
<Add directory="/opt/ros/melodic/include"/>
<Add directory="/opt/ros/melodic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp"/>
<Add directory="/usr/include/eigen3"/>
<Add directory="/usr/include/pcl-1.8"/>
<Add directory="/usr/include/ni"/>
<Add directory="/usr/include/openni2"/>
<Add directory="/usr/include/vtk-6.3"/>
<Add directory="/usr/include/freetype2"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include"/>
<Add directory="/usr/include/python2.7"/>
<Add directory="/usr/include/x86_64-linux-gnu"/>
<Add directory="/usr/include/hdf5/openmpi"/>
<Add directory="/usr/include/libxml2"/>
<Add directory="/usr/include/jsoncpp"/>
<Add directory="/usr/include/tcl"/>
<Add directory="/usr/include/c++/7"/>
<Add directory="/usr/include/x86_64-linux-gnu/c++/7"/>
<Add directory="/usr/include/c++/7/backward"/>
<Add directory="/usr/lib/gcc/x86_64-linux-gnu/7/include"/>
<Add directory="/usr/local/include"/>
<Add directory="/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"/>
<Add directory="/usr/include"/>
</Compiler>
<MakeCommands>
<Build command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 point_cloud_transform"/>
<CompileFile command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="point_cloud_transform/fast">
<Option output="/home/neil/Workspace/self-driving-golf-cart/ros/devel/lib/point_cloud/point_cloud_transform" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/home/neil/Workspace/self-driving-golf-cart/ros/devel/lib/point_cloud"/>
<Option object_output="./"/>
<Option type="1"/>
<Option compiler="gcc"/>
<Compiler>
<Add option="-DROS_BUILD_SHARED_LIBS=1"/>
<Add option="-DROS_PACKAGE_NAME=&quot;point_cloud&quot;"/>
<Add option="-DROSCONSOLE_BACKEND_LOG4CXX"/>
<Add directory="/opt/ros/melodic/include"/>
<Add directory="/opt/ros/melodic/share/xmlrpcpp/cmake/../../../include/xmlrpcpp"/>
<Add directory="/usr/include/eigen3"/>
<Add directory="/usr/include/pcl-1.8"/>
<Add directory="/usr/include/ni"/>
<Add directory="/usr/include/openni2"/>
<Add directory="/usr/include/vtk-6.3"/>
<Add directory="/usr/include/freetype2"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include"/>
<Add directory="/usr/lib/x86_64-linux-gnu/openmpi/include"/>
<Add directory="/usr/include/python2.7"/>
<Add directory="/usr/include/x86_64-linux-gnu"/>
<Add directory="/usr/include/hdf5/openmpi"/>
<Add directory="/usr/include/libxml2"/>
<Add directory="/usr/include/jsoncpp"/>
<Add directory="/usr/include/tcl"/>
<Add directory="/usr/include/c++/7"/>
<Add directory="/usr/include/x86_64-linux-gnu/c++/7"/>
<Add directory="/usr/include/c++/7/backward"/>
<Add directory="/usr/lib/gcc/x86_64-linux-gnu/7/include"/>
<Add directory="/usr/local/include"/>
<Add directory="/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed"/>
<Add directory="/usr/include"/>
</Compiler>
<MakeCommands>
<Build command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 point_cloud_transform/fast"/>
<CompileFile command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j12 -f &quot;/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="std_srvs_generate_messages_py">
<Option working_dir="/home/neil/Workspace/self-driving-golf-cart/ros/src/cmake-build-debug/point_cloud"/>
<Option type="4"/>
Expand Down Expand Up @@ -377,6 +463,9 @@
<Unit filename="/home/neil/Workspace/self-driving-golf-cart/ros/src/point_cloud/src/planar_segmentation.cpp">
<Option target="planar_segmentation"/>
</Unit>
<Unit filename="/home/neil/Workspace/self-driving-golf-cart/ros/src/point_cloud/src/point_cloud_transform.cpp">
<Option target="point_cloud_transform"/>
</Unit>
<Unit filename="/home/neil/Workspace/self-driving-golf-cart/ros/src/CMakeLists.txt">
<Option virtualFolder="CMake Files\"/>
</Unit>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
CMAKE_PROGRESS_1 = 10
CMAKE_PROGRESS_1 =
CMAKE_PROGRESS_2 =
CMAKE_PROGRESS_3 =
CMAKE_PROGRESS_3 = 11
CMAKE_PROGRESS_4 =
CMAKE_PROGRESS_5 = 11
CMAKE_PROGRESS_6 =
CMAKE_PROGRESS_5 =
CMAKE_PROGRESS_6 = 12
CMAKE_PROGRESS_7 =
CMAKE_PROGRESS_8 = 12
CMAKE_PROGRESS_9 =
CMAKE_PROGRESS_8 =
CMAKE_PROGRESS_9 = 13
CMAKE_PROGRESS_10 =
CMAKE_PROGRESS_11 = 13
CMAKE_PROGRESS_11 =
CMAKE_PROGRESS_12 =
CMAKE_PROGRESS_13 =
CMAKE_PROGRESS_14 = 14
CMAKE_PROGRESS_13 = 14
CMAKE_PROGRESS_14 =
CMAKE_PROGRESS_15 =
CMAKE_PROGRESS_16 =
CMAKE_PROGRESS_16 = 15
CMAKE_PROGRESS_17 =
CMAKE_PROGRESS_18 = 15
CMAKE_PROGRESS_19 =
CMAKE_PROGRESS_18 =
CMAKE_PROGRESS_19 = 16
CMAKE_PROGRESS_20 =
CMAKE_PROGRESS_21 = 16
CMAKE_PROGRESS_21 =
CMAKE_PROGRESS_22 =
CMAKE_PROGRESS_23 =
CMAKE_PROGRESS_24 = 17
CMAKE_PROGRESS_23 = 17
CMAKE_PROGRESS_24 =
CMAKE_PROGRESS_25 =

Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
CMAKE_PROGRESS_1 =
CMAKE_PROGRESS_1 = 18
CMAKE_PROGRESS_2 =
CMAKE_PROGRESS_3 = 18
CMAKE_PROGRESS_4 =
CMAKE_PROGRESS_3 =
CMAKE_PROGRESS_4 = 19
CMAKE_PROGRESS_5 =
CMAKE_PROGRESS_6 = 19
CMAKE_PROGRESS_7 =
CMAKE_PROGRESS_6 =
CMAKE_PROGRESS_7 = 20
CMAKE_PROGRESS_8 =
CMAKE_PROGRESS_9 = 20
CMAKE_PROGRESS_9 =
CMAKE_PROGRESS_10 =
CMAKE_PROGRESS_11 =
CMAKE_PROGRESS_12 = 21
CMAKE_PROGRESS_11 = 21
CMAKE_PROGRESS_12 =
CMAKE_PROGRESS_13 =
CMAKE_PROGRESS_14 =
CMAKE_PROGRESS_14 = 22
CMAKE_PROGRESS_15 =
CMAKE_PROGRESS_16 = 22
CMAKE_PROGRESS_17 =
CMAKE_PROGRESS_16 =
CMAKE_PROGRESS_17 = 23
CMAKE_PROGRESS_18 =
CMAKE_PROGRESS_19 = 23
CMAKE_PROGRESS_19 =
CMAKE_PROGRESS_20 =
CMAKE_PROGRESS_21 =
CMAKE_PROGRESS_22 = 24
CMAKE_PROGRESS_21 = 24
CMAKE_PROGRESS_22 =
CMAKE_PROGRESS_23 =
CMAKE_PROGRESS_24 =
CMAKE_PROGRESS_25 = 25
CMAKE_PROGRESS_24 = 25
CMAKE_PROGRESS_25 =
CMAKE_PROGRESS_26 =

Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
CMAKE_PROGRESS_1 =
CMAKE_PROGRESS_1 = 26
CMAKE_PROGRESS_2 =
CMAKE_PROGRESS_3 = 26
CMAKE_PROGRESS_3 =
CMAKE_PROGRESS_4 =
CMAKE_PROGRESS_5 =
CMAKE_PROGRESS_6 = 27
CMAKE_PROGRESS_5 = 27
CMAKE_PROGRESS_6 =
CMAKE_PROGRESS_7 =
CMAKE_PROGRESS_8 =
CMAKE_PROGRESS_9 = 28
CMAKE_PROGRESS_8 = 28
CMAKE_PROGRESS_9 =
CMAKE_PROGRESS_10 =
CMAKE_PROGRESS_11 =
CMAKE_PROGRESS_11 = 29
CMAKE_PROGRESS_12 =
CMAKE_PROGRESS_13 = 29
CMAKE_PROGRESS_14 =
CMAKE_PROGRESS_13 =
CMAKE_PROGRESS_14 = 30
CMAKE_PROGRESS_15 =
CMAKE_PROGRESS_16 = 30
CMAKE_PROGRESS_16 =
CMAKE_PROGRESS_17 =
CMAKE_PROGRESS_18 =
CMAKE_PROGRESS_19 = 31
CMAKE_PROGRESS_18 = 31
CMAKE_PROGRESS_19 =
CMAKE_PROGRESS_20 =
CMAKE_PROGRESS_21 =
CMAKE_PROGRESS_22 = 32
CMAKE_PROGRESS_21 = 32
CMAKE_PROGRESS_22 =
CMAKE_PROGRESS_23 =
CMAKE_PROGRESS_24 =
CMAKE_PROGRESS_24 = 33
CMAKE_PROGRESS_25 =

0 comments on commit 036cc1c

Please sign in to comment.