Fix vcpkg build and installation #36

Merged
rmontanana merged 19 commits from fix_vcpkg into main 2025-06-29 11:01:09 +00:00
32 changed files with 1235 additions and 369 deletions
Showing only changes of commit 70545ee0ad - Show all commits

View File

@@ -111,3 +111,17 @@ install(FILES
"${CMAKE_CURRENT_BINARY_DIR}/bayesnetConfigVersion.cmake" "${CMAKE_CURRENT_BINARY_DIR}/bayesnetConfigVersion.cmake"
DESTINATION share/bayesnet DESTINATION share/bayesnet
) )
# Documentation
# -------------
find_package(Doxygen)
if (Doxygen_FOUND)
set(DOC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/docs)
set(doxyfile_in ${DOC_DIR}/Doxyfile.in)
set(doxyfile ${DOC_DIR}/Doxyfile)
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
doxygen_add_docs(doxygen
WORKING_DIRECTORY ${DOC_DIR}
CONFIG_FILE ${doxyfile})
else (Doxygen_FOUND)
MESSAGE("* Doxygen not found")
endif (Doxygen_FOUND)

View File

@@ -4,9 +4,6 @@
#include <condition_variable> #include <condition_variable>
#include <algorithm> #include <algorithm>
#include <thread> #include <thread>
#include <mutex>
#include <condition_variable>
#include <thread>
class CountingSemaphore { class CountingSemaphore {
public: public: