Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cmake_minimum_required ( VERSION 3.14 FATAL_ERROR )
project ( wait_queue
LANGUAGES CXX
DESCRIPTION "A multi producer / multi consumer thread safe wait queue"
HOMEPAGE_URL "https://githug.com/connectivecpp/wait-queue/" )
HOMEPAGE_URL "https://github.com/connectivecpp/wait-queue/" )

option ( WAIT_QUEUE_BUILD_TESTS "Build unit tests" OFF )
option ( WAIT_QUEUE_BUILD_EXAMPLES "Build examples" OFF )
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.

INPUT = ../include
INPUT = ../include ../test ../example

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down
1 change: 1 addition & 0 deletions example/wait_queue_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* Sample make file:
* g++ -std=c++17 -I ~/Projects/utility-rack/include/ wait_queue_demo.cpp
*
* This also builds under CMake, with C++ 20 specified.
*/

#include <iostream>
Expand Down