-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
994 additions
and
21 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
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,6 @@ | ||
file(GLOB dirs LIST_DIRECTORIES true *) | ||
foreach(dir ${dirs}) | ||
if(IS_DIRECTORY ${dir}) | ||
add_subdirectory(${dir}) | ||
endif() | ||
endforeach() |
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,16 @@ | ||
find_package(FreeSurfaceHydrodynamics REQUIRED) | ||
set(BOOST_USE_STATIC_LIBS OFF) | ||
set(BOOST_USE_MULTITHREADED ON) | ||
set(BOOST_USE_STATIC_RUNTIME OFF) | ||
find_package(Boost 1.71.0 COMPONENTS system iostreams filesystem) | ||
|
||
gz_add_plugin(IncWaveHeight | ||
SOURCES | ||
IncWaveHeight.cpp | ||
PUBLIC_LINK_LIBS | ||
FreeSurfaceHydrodynamics | ||
INCLUDE_DIRS | ||
../.. | ||
.. | ||
ROS | ||
) |
Oops, something went wrong.