Skip to content
Snippets Groups Projects
setup_dev.sh 726 B
Newer Older
Xuefeng Ding's avatar
Xuefeng Ding committed
#############################################################################
#  Author: Xuefeng Ding <dingxf@ihep.ac.cn> @ IHEP-CAS
#
#  Project: cpp-python-small
#  Date: 2024 December 2nd
#  Version: v1.0
#  Description:
#    Boilerplate for c++-python project.
#    Can be installed with `pip install .`
#
#  Maintainer:
#    Xuefeng Ding <dingxf@ihep.ac.cn>
#
#  All rights reserved. 2024 copyrighted.
#############################################################################
#!/bin/bash

Xuefeng Ding's avatar
Xuefeng Ding committed
library_output_dir="./src/myproj/simulation/_csrc"
pip install -r requirements-dev.txt
pip install --no-build-isolation --check-build-dependencies -ve . \
Xuefeng Ding's avatar
Xuefeng Ding committed
   -Ccmake.define.CMAKE_EXPORT_COMPILE_COMMANDS=1 \
   -Cbuild-dir=build