Skip to content

Commit b4d4c31

Browse files
committed
- shortened external project names
1 parent 8ba290b commit b4d4c31

13 files changed

Lines changed: 18 additions & 17 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ set(EigenDir "${CMAKE_SOURCE_DIR}/extern/eigen")
2626

2727
## Discregrid
2828
ExternalProject_Add(
29-
ExternalProject_Discregrid
29+
Ext_Discregrid
3030
PREFIX "${CMAKE_SOURCE_DIR}/extern/Discregrid"
3131
GIT_REPOSITORY https://github.com/InteractiveComputerGraphics/Discregrid.git
3232
GIT_TAG "573c2f51f433c74de832454272e47f590140e80b"
@@ -36,7 +36,7 @@ ExternalProject_Add(
3636

3737
## GenericParameters
3838
ExternalProject_Add(
39-
ExternalProject_GenericParameters
39+
Ext_GenericParameters
4040
PREFIX "${CMAKE_SOURCE_DIR}/extern/GenericParameters"
4141
GIT_REPOSITORY https://github.com/InteractiveComputerGraphics/GenericParameters.git
4242
GIT_TAG "1ec904bf8555e78ae0d8ba2f9f9a395371c5d4eb"

Demos/BarDemo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424
add_executable(BarDemo
2525
main.cpp

Demos/ClothDemo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424

2525
add_executable(ClothDemo

Demos/CosseratRodsDemo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424
add_executable(CosseratRodsDemo
2525
main.cpp

Demos/CouplingDemos/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424
add_executable(RigidBodyClothCouplingDemo
2525
RigidBodyClothCouplingDemo.cpp

Demos/DistanceFieldDemos/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424

2525
add_executable(ClothCollisionDemo

Demos/GenericConstraintsDemos/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424
add_executable(GenericParticleConstraintsDemo
2525
GenericParticleConstraintsDemo.cpp

Demos/PositionBasedElasticRodsDemo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2323

2424
add_executable(ElasticRodDemo
2525
PositionBasedElasticRodsDemo.cpp

Demos/RigidBodyDemos/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ endif()
1919
# GenericParameters
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
2223

2324
add_executable(ChainDemo
2425
ChainDemo.cpp

Demos/SceneLoaderDemo/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ endif()
1919
# Discregrid
2020
############################################################
2121
include_directories(${PROJECT_PATH}/extern/install/Discregrid/include)
22-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_Discregrid)
22+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_Discregrid)
2323
set(SIMULATION_LINK_LIBRARIES ${SIMULATION_LINK_LIBRARIES}
2424
optimized Discregrid
2525
debug Discregrid_d)
@@ -29,7 +29,7 @@ link_directories(${PROJECT_PATH}/extern/install/Discregrid/lib)
2929
# GenericParameters
3030
############################################################
3131
include_directories(${PROJECT_PATH}/extern/install/GenericParameters/include)
32-
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} ExternalProject_GenericParameters)
32+
set(SIMULATION_DEPENDENCIES ${SIMULATION_DEPENDENCIES} Ext_GenericParameters)
3333

3434
add_executable(SceneLoaderDemo
3535
SceneLoaderDemo.cpp

0 commit comments

Comments
 (0)