Skip to content

Commit 59681ca

Browse files
co
1 parent 26bb452 commit 59681ca

File tree

5 files changed

+40
-15
lines changed

5 files changed

+40
-15
lines changed

CMakeLists.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
4545
#Find all required third parties (this should be moved elsewhere)
4646
find_package(asio CONFIG REQUIRED)
4747
find_package(Eigen3 CONFIG REQUIRED)
48-
find_package(Ceres CONFIG REQUIRED)
49-
find_package(unofficial-skia CONFIG REQUIRED)
48+
#find_package(Ceres CONFIG REQUIRED)
49+
#find_package(unofficial-skia CONFIG REQUIRED)
5050
find_package(nlohmann_json REQUIRED)
51-
find_package(Vulkan REQUIRED)
52-
find_package(glfw3 3.3 REQUIRED)
53-
find_package(Boost COMPONENTS filesystem)
51+
#find_package(Vulkan REQUIRED)
52+
#find_package(glfw3 3.3 REQUIRED)
53+
#find_package(Boost COMPONENTS filesystem)
5454
find_package(vsg CONFIG REQUIRED)
5555
find_package(vsgXchange CONFIG REQUIRED)
5656
find_package(vsgImGui CONFIG REQUIRED)
5757
find_package(RBDL CONFIG REQUIRED)
58-
find_package(gflags REQUIRED)
59-
find_package(glog REQUIRED)
58+
#find_package(gflags REQUIRED)
59+
#find_package(glog REQUIRED)
6060

6161

6262
#Externally provided targets
@@ -96,7 +96,7 @@ add_custom_target(
9696
add_subdirectory(libraries)
9797

9898
# Add medical applications
99-
add_subdirectory(applications)
99+
#add_subdirectory(applications)
100100

101101
# Most of the time there is no need to compile the tests and the tutorials
102102
# folder so you can comment out these subfolders from the build directory

libraries/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
add_subdirectory(utils)
22
add_subdirectory(communication)
3-
add_subdirectory(userinterface)
3+
#add_subdirectory(userinterface)
44
add_subdirectory(rendering)
5-
add_subdirectory(imageprocessing)
6-
add_subdirectory(optimization)
7-
add_subdirectory(geometry)
8-
add_subdirectory(gaussianmixtures)
5+
#add_subdirectory(imageprocessing)
6+
#add_subdirectory(optimization)
7+
#add_subdirectory(geometry)
8+
#add_subdirectory(gaussianmixtures)
99
add_subdirectory(robotutils)

libraries/robotutils/include/robotutils/InertiaAwareRippleFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace massripple{
3535
Eigen::Matrix<double,n_joints,1> w = 2*R(dq.array().abs().matrix());
3636
Eigen::Matrix<double,n_joints,1> G = Eigen::Matrix<double,n_joints,1>::Zero();
3737
for(double& g : G.rowwise()){
38-
38+
3939
}
4040
double amplitude = G.array().abs().maxCoeff(critical_index);
4141
value = std::min((dq[critical_index]*dq[critical_index])/(0.1*0.1),1.0);

vcpkg copy.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"dependencies": [
3+
"eigen3",
4+
"itk",
5+
"ceres",
6+
"asio",
7+
"glfw3",
8+
"nlohmann-json",
9+
"boost-process",
10+
"vsg",
11+
"vsgimgui",
12+
"pugixml",
13+
"pcl",
14+
"gtest",
15+
"rbdl",
16+
{
17+
"name": "vsgxchange",
18+
"features": [ "assimp" ]
19+
},
20+
{
21+
"name": "skia",
22+
"features": [ "vulkan", "icu" ]
23+
}
24+
],
25+
"builtin-baseline": "7e21420f775f72ae938bdeb5e6068f722088f06a"
26+
}

vcpkg.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"dependencies": [
33
"eigen3",
4-
"itk",
54
"ceres",
65
"asio",
76
"glfw3",

0 commit comments

Comments
 (0)