yay initial commit

This commit is contained in:
2026-07-20 10:57:07 +10:00
commit e1751a3ece
18 changed files with 22476 additions and 0 deletions

18
server/meson.build Normal file
View File

@@ -0,0 +1,18 @@
project('chookchat', 'cpp', version : '0.1.0')
sources = [
'src/main.cpp',
'src/post.cpp',
'src/db.cpp',
'src/generated/header.cpp',
'src/generated/footer.cpp',
# bcrypt
'src/bcrypt/bcrypt.cpp',
'src/bcrypt/blowfish.cpp'
]
cc = meson.get_compiler('cpp')
sqlite3 = cc.find_library('sqlite3')
executable('chookchat', sources, dependencies : sqlite3)