Start implementing

master
teknomunk 7 months ago
parent c302d0010c
commit 8efab0f0b3

1
.gitignore vendored

@ -1,3 +1,4 @@
obj
data
squishyfish
squishyfish.debug

2
.gitmodules vendored

@ -5,7 +5,7 @@
path = src/ffdb
url = https://teknomunk@gitea.polaris-1.work/teknomunk/ffdb.git
[submodule "src/activitystreams"]
path = src/activitystreams
path = src/ap
url = https://teknomunk@gitea.polaris-1.work/teknomunk/activitystreams.git
[submodule "src/collections"]
path = src/collections

@ -8,6 +8,10 @@ git submodule update --init --recursive
rm debug release 2>/dev/null || true
find src | grep -E "\.template$" | while read FILE; do
ruby tools/builder/tools/embed.rb "$FILE"
done
ruby tools/builder/build.rb src/$NAME.build.json
mv obj/$NAME.bin $NAME.debug
cp $NAME.debug{,.tmp}

@ -1 +0,0 @@
Subproject commit d8fa4876c55670287e41c1698f2500881d0b02d4

@ -1,8 +1,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
void init()
{
mkdir("data",0640);
mkdir("data/videos",0640);
}
int main( int argc, char* argv[] )
{
init();
return EXIT_SUCCESS;
}

Loading…
Cancel
Save