Change-Id: Ia1c7081377f53fd470addf35526f8b28a949a7b0 Signed-off-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/52523 Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Gabe Black <gabe.black@gmail.com>
22 lines
662 B
Python
22 lines
662 B
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
|
|
DIR = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
def get_include(user=False):
|
|
# type: (bool) -> str
|
|
installed_path = os.path.join(DIR, "include")
|
|
source_path = os.path.join(os.path.dirname(DIR), "include")
|
|
return installed_path if os.path.exists(installed_path) else source_path
|
|
|
|
|
|
def get_cmake_dir():
|
|
# type: () -> str
|
|
cmake_installed_path = os.path.join(DIR, "share", "cmake", "pybind11")
|
|
if os.path.exists(cmake_installed_path):
|
|
return cmake_installed_path
|
|
else:
|
|
msg = "pybind11 not installed, installation required to access the CMake files"
|
|
raise ImportError(msg)
|