Compare commits
5 Commits
f0ee39084e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ad7685b88 | |||
| 3198f8905e | |||
| 458652d0c5 | |||
| 7ef47c567c | |||
| 1a4ad2a3f0 |
@@ -1 +1 @@
|
||||
2.3.1
|
||||
2.3.3
|
||||
@@ -1,3 +1,9 @@
|
||||
## 2.3.3
|
||||
+ now all default build dasks delete out file before building new one
|
||||
|
||||
## 2.3.2
|
||||
+ fixed symlink creation in `OBJDIR/static_libs`
|
||||
|
||||
## 2.3.1
|
||||
+ user config loads before project config
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
INSTALLED_CBUILD_VERSION=2.3.1
|
||||
INSTALLED_CBUILD_VERSION=2.3.3
|
||||
|
||||
# set \t size to 4 spaces
|
||||
tabs 4
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
# delete old objects
|
||||
clean_dir "$OBJDIR/objects"
|
||||
rm -f "$EXEC_FILE"
|
||||
|
||||
# copy profiling info
|
||||
prof_files=$(find "$OBJDIR/profile/" -name '*.gcda')
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
# delete old objects
|
||||
clean_dir "$OBJDIR/objects"
|
||||
rm -f "$SHARED_LIB_FILE"
|
||||
|
||||
[ ! -z "$SRC_C" ] && compile_c "$CMP_C" "$STD_C" "$WARN_C" "$C_ARGS" "$INCLUDE" "$SRC_C"
|
||||
[ ! -z "$SRC_CPP" ] && compile_cpp "$CMP_CPP" "$STD_CPP" "$WARN_CPP" "$CPP_ARGS" "$INCLUDE" "$SRC_CPP"
|
||||
link "$LINKER_ARGS" "$SHARED_LIB_FILE"
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
# delete old objects
|
||||
clean_dir "$OBJDIR/objects"
|
||||
rm -f "$STATIC_LIB_FILE"
|
||||
|
||||
[ ! -z "$SRC_C" ] && compile_c "$CMP_C" "$STD_C" "$WARN_C" "$C_ARGS" "$INCLUDE" "$SRC_C"
|
||||
[ ! -z "$SRC_CPP" ] && compile_cpp "$CMP_CPP" "$STD_CPP" "$WARN_CPP" "$CPP_ARGS" "$INCLUDE" "$SRC_CPP"
|
||||
pack_static_lib "$STATIC_LIB_FILE"
|
||||
|
||||
@@ -137,8 +137,8 @@ function build_dependency {
|
||||
# creates symbolic link to each file in $OBJDIR/static_libs
|
||||
for file in $DEP_STATIC_OUT_FILES; do
|
||||
# doesnt return error if called not like this
|
||||
f=$(realpath $file)
|
||||
ln -sfv $f "$proj_root_dir/$OBJDIR/static_libs"
|
||||
real_file=$(realpath $file)
|
||||
ln -sfv "$real_file" "$proj_root_dir/$OBJDIR/static_libs/"
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
CBUILD_VERSION=2.3.1
|
||||
CBUILD_VERSION=2.3.3
|
||||
|
||||
PROJECT="%PROJECT_NAME%"
|
||||
CMP_C="gcc"
|
||||
@@ -35,7 +35,7 @@ OBJDIR="obj"
|
||||
OUTDIR="bin"
|
||||
STATIC_LIB_FILE="$PROJECT.a"
|
||||
|
||||
# example: "-I./include"
|
||||
# example: "-I./include -I$DEPENDENCIES_DIR/libexample"
|
||||
INCLUDE=""
|
||||
|
||||
# OS-specific options
|
||||
|
||||
Reference in New Issue
Block a user