-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The standalone module for dimension reduction.
- Loading branch information
1 parent
46c9ea8
commit e7ca935
Showing
5 changed files
with
498 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
cmake_minimum_required(VERSION 3.21) | ||
|
||
project(ttkDimensionReductionCmd) | ||
|
||
if(TARGET ttkDimensionReduction) | ||
add_executable(${PROJECT_NAME} main.cpp) | ||
target_link_libraries(${PROJECT_NAME} | ||
PRIVATE | ||
ttkDimensionReduction | ||
ttkDataSetToTable | ||
VTK::IOXML | ||
VTK::IOInfovis | ||
) | ||
set_target_properties(${PROJECT_NAME} | ||
PROPERTIES | ||
INSTALL_RPATH | ||
"${CMAKE_INSTALL_RPATH}" | ||
) | ||
install( | ||
TARGETS | ||
${PROJECT_NAME} | ||
RUNTIME DESTINATION | ||
${TTK_INSTALL_BINARY_DIR} | ||
) | ||
endif() |
Oops, something went wrong.