mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
9966017ca0
Allows FindSpecFile to succeed if the specfiles are still in the install prefix defined in CMake.
19 lines
519 B
C
19 lines
519 B
C
/*
|
|
Copyright (c) 2021-present, Trail of Bits, Inc.
|
|
All rights reserved.
|
|
|
|
This source code is licensed in accordance with the terms specified in
|
|
the LICENSE file found in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace sleigh {
|
|
|
|
static const char *kSleighSpecInstallDir = "@sleigh_INSTALL_SPECDIR@";
|
|
static const char *kSleighFullSpecInstallDir =
|
|
"@CMAKE_INSTALL_PREFIX@/@sleigh_INSTALL_SPECDIR@";
|
|
static const char *kSleighSpecBuildDir = "@spec_files_build_dir@";
|
|
|
|
} // namespace sleigh
|