Files
xeus-basic/postBuild
T

13 lines
296 B
Bash
Raw Normal View History

2021-11-02 23:31:27 +05:30
#! /bin/sh
2021-09-19 14:01:55 +05:30
2021-11-02 23:31:27 +05:30
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2021 Avinal Kumar <avinal.xlvii@gmail.com>
2021-09-19 14:01:55 +05:30
2021-11-02 23:31:27 +05:30
# Create a directory for build
mkdir build && cd build || exit
2021-09-19 14:01:55 +05:30
2021-11-02 23:31:27 +05:30
# Configure CMake
cmake -D CMAKE_INSTALL_PREFIX="/srv/conda/envs/notebook" ..
2021-09-19 14:01:55 +05:30
2021-11-02 23:31:27 +05:30
# Install the Kernel
2021-09-19 14:01:55 +05:30
make install