add boost libs
This commit is contained in:
@@ -9,6 +9,8 @@ project('video-streaming-poc', 'cpp', version : '0.0.1-SNAPSHOT',
|
||||
#=======================================================================================================================
|
||||
# opencv dependency
|
||||
opencv = dependency('opencv4', version : '>=4.0.0')
|
||||
# boost dependency
|
||||
boost = dependency('boost')
|
||||
|
||||
#=======================================================================================================================
|
||||
# SOURCE FILES
|
||||
@@ -25,7 +27,7 @@ server = common + ['server.cpp']
|
||||
#=======================================================================================================================
|
||||
# client executable
|
||||
client_exe = executable('client', client,
|
||||
dependencies : opencv)
|
||||
dependencies : [opencv, boost])
|
||||
# server executable
|
||||
server_exe = executable('server', server,
|
||||
dependencies : opencv)
|
||||
dependencies : [opencv, boost])
|
Reference in New Issue
Block a user