feat(dobj/LockableDObject): added thread safe implimentation of DObject
In order to build a preformant code code base we may want to make parallized code in which case having a lockable DObject is a useful construct
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
# Define the library
|
||||
dobj_sources = files(
|
||||
'dobj/private/Metadata.cpp'
|
||||
'dobj/private/Metadata.cpp',
|
||||
'dobj/private/DObject.cpp',
|
||||
'dobj/private/LockableDObject.cpp'
|
||||
)
|
||||
|
||||
dobj_headers = files(
|
||||
'dobj/public/Metadata.h'
|
||||
'dobj/public/Metadata.h',
|
||||
'dobj/public/DObject.h',
|
||||
'dobj/public/LockableDObject.h'
|
||||
)
|
||||
|
||||
# Define the libdobj library so it can be linked against by other parts of the build system
|
||||
|
||||
Reference in New Issue
Block a user