From 4e71c8449014ade647566054d1b1224538621927 Mon Sep 17 00:00:00 2001 From: Matt Woodward Date: Thu, 16 Jun 2022 11:01:04 -0700 Subject: [PATCH] Add find module for starling-core --- FindStarlingCore.cmake | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 FindStarlingCore.cmake diff --git a/FindStarlingCore.cmake b/FindStarlingCore.cmake new file mode 100644 index 0000000..0f69cc5 --- /dev/null +++ b/FindStarlingCore.cmake @@ -0,0 +1,22 @@ +# +# Copyright (C) 2021 Swift Navigation Inc. +# Contact: Swift Navigation +# +# This source is subject to the license found in the file 'LICENSE' which must +# be be distributed together with this source. All other rights reserved. +# +# THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, +# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. +# + +include("GenericFindDependency") + +option(starling_core_ENABLE_TESTS "" OFF) +option(starling_core_ENABLE_TEST_LIBS "" OFF) +option(starling_core_ENABLE_EXAMPLES "" OFF) + +GenericFindDependency( + TARGET starling-core-utils + SOURCE_DIR starling-core +)