Skip to content

Commit f3c8d15

Browse files
committed
Add abyss - directory for random stuff
1 parent 86cd349 commit f3c8d15

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
tmp/
1+
# build/editor related stuff:
22
build/
33
compile_commands.json
4+
# files used for dirty, local experiments:
5+
abyss/dupa.cpp
6+
a.out
7+
tmp/

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ shit that don't deserve separate repos
1919

2020
There are examples in `shlag/examples/` and tests in `shlag/tests/`
2121

22+
## abyss - random, poorly documented stuff
23+
2224
### building tests and examples
2325
In root project dir run:
2426
```

abyss/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- dupa.cpp is dummy file for quick & dirty local experiments. It is added to .gitignore and I don't commit its real contents
2+

abyss/dupa.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
int main() {}

meson.build

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('shmit', 'c')
1+
project('shmit', 'c', 'cpp')
22
shlagdir = include_directories('shlag/')
33

44
b64test = executable('b64test', 'shlag/tests/b64test.c', include_directories : shlagdir)
@@ -20,3 +20,5 @@ test('run pcg_example with big range', pcg_example, args : args)
2020

2121
args = ['5000', '9898989', '4294967295', '2137', '2138'] # [count, begin, end, seed1, seed2]
2222
test('run pcg_example with big nums and specified seed', pcg_example, args : args)
23+
24+
dupa = executable('dupa', 'abyss/dupa.cpp')

0 commit comments

Comments
 (0)