kerep.config
This commit is contained in:
parent
8ad97751bd
commit
a96fb02b32
@ -1,7 +1,11 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
DEP_WORKING_DIR='kerep'
|
DEP_WORKING_DIR='kerep'
|
||||||
DEP_PRE_BUILD_COMMAND=''
|
DEP_PRE_BUILD_COMMAND=''
|
||||||
|
if [[ "$TASK" = *_dbg ]]; then
|
||||||
|
DEP_BUILD_COMMAND='cbuild build_static_lib_dbg'
|
||||||
|
else
|
||||||
DEP_BUILD_COMMAND='cbuild build_static_lib'
|
DEP_BUILD_COMMAND='cbuild build_static_lib'
|
||||||
|
fi
|
||||||
DEP_POST_BUILD_COMMAND=''
|
DEP_POST_BUILD_COMMAND=''
|
||||||
DEP_CLEAN_COMMAND='cbuild clean'
|
DEP_CLEAN_COMMAND='cbuild clean'
|
||||||
# won't be copied to project $OUTDIR
|
# won't be copied to project $OUTDIR
|
||||||
@ -1,10 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
DEP_WORKING_DIR='kerep'
|
|
||||||
DEP_PRE_BUILD_COMMAND=''
|
|
||||||
DEP_BUILD_COMMAND='cbuild build_static_lib'
|
|
||||||
DEP_POST_BUILD_COMMAND=''
|
|
||||||
DEP_CLEAN_COMMAND='cbuild clean'
|
|
||||||
# won't be copied to project $OUTDIR
|
|
||||||
DEP_STATIC_OUT_FILES='bin/libkerep.a'
|
|
||||||
# will be copied tp project $OUTDIR
|
|
||||||
DEP_DYNAMIC_OUT_FILES=''
|
|
||||||
@ -18,7 +18,7 @@ SRC_CPP="$( find src -name '*.cpp')"
|
|||||||
# See cbuild/example_dependency_configs
|
# See cbuild/example_dependency_configs
|
||||||
DEPENDENCY_CONFIGS_DIR='.'
|
DEPENDENCY_CONFIGS_DIR='.'
|
||||||
# List of dependency config files in DEPENDENCY_CONFIGS_DIR separated by space.
|
# List of dependency config files in DEPENDENCY_CONFIGS_DIR separated by space.
|
||||||
ENABLED_DEPENDENCIES='libkerep'
|
ENABLED_DEPENDENCIES='kerep'
|
||||||
|
|
||||||
# OBJDIR structure:
|
# OBJDIR structure:
|
||||||
# ├── objects/ - Compiled object files. Cleans on each call of build task
|
# ├── objects/ - Compiled object files. Cleans on each call of build task
|
||||||
@ -71,7 +71,6 @@ case "$TASK" in
|
|||||||
PRE_TASK_SCRIPT=
|
PRE_TASK_SCRIPT=
|
||||||
TASK_SCRIPT=cbuild/default_tasks/build_exec.sh
|
TASK_SCRIPT=cbuild/default_tasks/build_exec.sh
|
||||||
POST_TASK_SCRIPT=
|
POST_TASK_SCRIPT=
|
||||||
ENABLED_DEPENDENCIES="libkerep-dbg"
|
|
||||||
;;
|
;;
|
||||||
# executes $EXEC_FILE
|
# executes $EXEC_FILE
|
||||||
exec)
|
exec)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user