-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Installation commands in CMakeLists.txt
- Added package.xml, allowing blast to be build as a part of colcon build
- Loading branch information
Showing
4 changed files
with
76 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#--------------------------------------------------------------------------- | ||
# | ||
# blast-config.cmake - CMake configuration file for external projects. | ||
# Use this by invoking | ||
# | ||
# find_package(blast) | ||
# | ||
# The module defines blast::blast IMPORTED target | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/blast-targets.cmake") | ||
message(STATUS "Found blast") |
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,13 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>blast</name> | ||
<version>0.1.0</version> | ||
<description>BLAS Templates</description> | ||
<maintainer email="[email protected]">Mikhail Katliar</maintainer> | ||
<license>BSD 3-Clause License</license> | ||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |