forked from chookspace/chookchat
yay initial commit
This commit is contained in:
18
server/meson.build
Normal file
18
server/meson.build
Normal 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)
|
||||
Reference in New Issue
Block a user