File tree 6 files changed +1096
-0
lines changed
6 files changed +1096
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ ROOT_PATH="$(dirname $($PYTHON -c 'from __future__ import print_function; import
41
41
RECIPES_PATH=" $ROOT_PATH /recipes"
42
42
BUILD_PATH=" $ROOT_PATH /build"
43
43
LIBS_PATH=" $ROOT_PATH /build/libs"
44
+ BIN_PATH=" $ROOT_PATH /build/bin"
44
45
JAVACLASS_PATH=" $ROOT_PATH /build/java"
45
46
PACKAGES_PATH=" ${PACKAGES_PATH:- $ROOT_PATH / .packages} "
46
47
SRC_PATH=" $ROOT_PATH /src"
@@ -399,6 +400,7 @@ function run_prepare() {
399
400
test -d $PACKAGES_PATH || mkdir -p $PACKAGES_PATH
400
401
test -d $BUILD_PATH || mkdir -p $BUILD_PATH
401
402
test -d $LIBS_PATH || mkdir -p $LIBS_PATH
403
+ test -d $BIN_PATH || mkdir -p $BIN_PATH
402
404
test -d $JAVACLASS_PATH || mkdir -p $JAVACLASS_PATH
403
405
test -d $LIBLINK_PATH || mkdir -p $LIBLINK_PATH
404
406
Original file line number Diff line number Diff line change
1
+ --- a/src/CMakeLists.txt 2015-05-10 22:57:48.000000000 +0200
2
+ +++ b/src/CMakeLists.txt 2015-08-14 02:22:27.020473858 +0200
3
+ @@ -43,8 +43,10 @@
4
+ text.cpp text.h
5
+ utf8.cpp utf8.h
6
+ util.cpp util.h
7
+ + glob.c glob.h
8
+ wcwidth6.cpp)
9
+
10
+ + add_library (glob glob.c)
11
+ add_library (task STATIC ${task_SRCS})
12
+ add_executable (task_executable main.cpp)
13
+ add_executable (calc_executable calc.cpp)
Original file line number Diff line number Diff line change
1
+ --- a/src/Nibbler.h 2015-05-10 22:57:49.000000000 +0200
2
+ +++ b/src/Nibbler.h 2015-08-09 22:57:45.791057015 +0200
3
+ @@ -36,6 +36,7 @@
4
+ #include <string>
5
+ #include <vector>
6
+ #include <time.h>
7
+ + #include <util.h>
8
+
9
+ class Nibbler
10
+ {
You can’t perform that action at this time.
0 commit comments