forked from Ekumen-OS/beluga
-
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.
Merge pull request #2 from hidmic/likelihood_field_3d_model
Please CI
- Loading branch information
Showing
5 changed files
with
121 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
@PACKAGE_INIT@ | ||
|
||
include(CMakeFindDependencyMacro) | ||
find_dependency(Eigen3 REQUIRED NO_MODULE) | ||
find_dependency(range-v3 REQUIRED) | ||
find_dependency(Sophus REQUIRED) | ||
find_dependency(beluga REQUIRED) | ||
|
||
set(OPENVDB_CMAKE_MODULE_PATH | ||
${OPENVDB_CMAKE_MODULE_PATH} | ||
CACHE PATH "Path to OpenVDB CMake module") | ||
|
||
if(NOT OPENVDB_CMAKE_MODULE_PATH) | ||
file( | ||
GLOB_RECURSE | ||
OPENVDB_MODULES | ||
/usr/lib/*/FindOpenVDB.cmake | ||
/usr/local/lib/*/FindOpenVDB.cmake) | ||
list(LENGTH OPENVDB_MODULES NUM_OPENVDB_MODULES) | ||
if(NUM_OPENVDB_MODULES EQUAL 1) | ||
list(GET OPENVDB_MODULES 0 OPENVDB_MODULE) | ||
get_filename_component(OPENVDB_CMAKE_MODULE_PATH ${OPENVDB_MODULE} DIRECTORY) | ||
endif() | ||
unset(NUM_OPENVDB_MODULES) | ||
unset(OPENVDB_MODULES) | ||
endif() | ||
|
||
if(OPENVDB_CMAKE_MODULE_PATH) | ||
list(APPEND CMAKE_MODULE_PATH ${OPENVDB_CMAKE_MODULE_PATH}) | ||
endif() | ||
|
||
find_dependency(OpenVDB REQUIRED) | ||
|
||
if(OPENVDB_CMAKE_MODULE_PATH) | ||
list(POP_BACK CMAKE_MODULE_PATH) | ||
endif() | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
|
||
set(@PROJECT_NAME@_LIBRARIES @PROJECT_NAME@::@PROJECT_NAME@) | ||
|
||
check_required_components($@PROJECT_NAME@) |
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,27 @@ | ||
// Copyright 2022-2023 Ekumen, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/* | ||
* This file exists in this header-only library as a workaround for | ||
* clang-tidy to find and process the headers, since all the source files | ||
* inside the test folder are ignored. | ||
* It will not be exported or installed with the rest of the targets of this | ||
* library. | ||
*/ | ||
|
||
#include <beluga/beluga.hpp> | ||
|
||
int main() { | ||
return 0; | ||
} |
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