Lines Matching +full:setup +full:- +full:qfunctions
1 # Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
2 # All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
4 # SPDX-License-Identifier: BSD-2-Clause
9 from setuptools import setup, Extension
13 # ------------------------------------------------------------------------------
14 # Setup
15 # ------------------------------------------------------------------------------
18 sources=["libceed-qfunctions.c"],
19 extra_compile_args=["-O3", "-std=c11",
20 "-Wno-unused-variable",
21 "-Wno-unused-function"])
23 setup(name="libceed_qfunctions",
27 # ------------------------------------------------------------------------------