28 lines
855 B
Python
28 lines
855 B
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Cquery(CMakePackage):
|
|
"""a C++ header-only library for Nearest Neighbor (NN) search wih KD-trees.
|
|
"""
|
|
|
|
homepage = "https://github.com/cquery-project/cquery"
|
|
git = "https://github.com/cquery-project/cquery.git"
|
|
|
|
version('2018-08-23', commit='70c755b2e390d3edfb594a84a7531beb26b2bc07',
|
|
submodules=True)
|
|
|
|
depends_on('llvm')
|
|
|
|
# trivial patch (missing header) by mueller@kip.uni-heidelberg.de
|
|
patch('fix-gcc10.patch', level=0, when='%gcc@10.0:')
|
|
|
|
def cmake_args(self):
|
|
args = ['-DCMAKE_EXPORT_COMPILE_COMMANDS=YES',
|
|
'-DSYSTEM_CLANG=ON']
|
|
return args
|