-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from ess-dmsc/33_flush_log_messages
Flush log messages and other improvements
- Loading branch information
Showing
46 changed files
with
1,189 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
# To do | ||
The items in the following list is in no particular order. Suggestions and/or patches are welcome. | ||
|
||
* Improved threading model | ||
* Performance testing and improvements | ||
* Version number from git tag | ||
* Log file rotation | ||
* UDP Messages | ||
* Integrate the fmt library? | ||
* Add example logging macros |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
find_path(ConcurrentQueue_INCLUDE_DIR | ||
NAMES concurrentqueue/concurrentqueue.h | ||
PATHS /usr/local/include/ /opt/local/include/ | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(ConcurrentQueue FOUND_VAR ConcurrentQueue_FOUND REQUIRED_VARS | ||
ConcurrentQueue_INCLUDE_DIR | ||
) | ||
|
||
mark_as_advanced( | ||
ConcurrentQueue_INCLUDE_DIR | ||
) | ||
|
||
if(ConcurrentQueue_FOUND) | ||
set(ConcurrentQueue_INCLUDE_DIRS ${ConcurrentQueue_INCLUDE_DIR}) | ||
endif() | ||
|
||
if(ConcurrentQueue_FOUND AND NOT TARGET ConcurrentQueue::ConcurrentQueue) | ||
add_library(ConcurrentQueue::ConcurrentQueue INTERFACE IMPORTED) | ||
set_target_properties(ConcurrentQueue::ConcurrentQueue PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${ConcurrentQueue_INCLUDE_DIR}" | ||
) | ||
endif() |
Oops, something went wrong.