1
Fork 0
This repository has been archived on 2024-04-09. You can view files and clone it, but cannot push or open issues/pull-requests.
podcastoscope/bin/bld/default.bld_params.sh

17 lines
347 B
Bash

#!/bin/bash
compiler="cl"
compile_mode="debug"
arch="x64"
linker="lld-link"
ctx_opts=""
cd $bld_path/../..
root_path=$PWD
build_path="$root_path/build"
src_path="$root_path/src"
compiler_flags_path="$root_path/bin/compiler_flags.txt"
linker_flags_path="$root_path/bin/linker_flags.txt"
file_extensions_path="$root_path/bin/file_extensions.txt"