Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cpplib
Commits
ff93845d
Commit
ff93845d
authored
7 months ago
by
Joscha Schmiedt
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Fix boost components to be compatible with both vcpkg and conan
parent
c168bec6
No related branches found
No related tags found
2 merge requests
!61
Release 0.3.0
,
!53
Add vcpkg support
Pipeline
#53855
failed
7 months ago
Stage: info
Stage: setup
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+36
-26
36 additions, 26 deletions
CMakeLists.txt
with
36 additions
and
26 deletions
CMakeLists.txt
+
36
−
26
View file @
ff93845d
...
...
@@ -79,6 +79,8 @@ set(PROJECT_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/include")
add_subdirectory
(
src
)
add_subdirectory
(
include
)
add_subdirectory
(
doc
)
add_subdirectory
(
proto
)
####################################################################
### CODE GENERATION (WITH GRPC)
...
...
@@ -87,29 +89,29 @@ add_subdirectory(doc)
# TODO: Replace this with the protobuf_generate_cpp function
# Protobuf/Grpc source files
set
(
PROTO_FILES
${
PROJECT_SOURCE_DIR
}
/proto/proto/caosdb/info/v1/main.proto
${
PROJECT_SOURCE_DIR
}
/proto/proto/caosdb/entity/v1/main.proto
)
#
# Protobuf/Grpc source files
#
set(PROTO_FILES
#
${PROJECT_SOURCE_DIR}/proto/proto/caosdb/info/v1/main.proto
#
${PROJECT_SOURCE_DIR}/proto/proto/caosdb/entity/v1/main.proto
#
)
IF
(
BUILD_ACM
)
list
(
APPEND PROTO_FILES
${
PROJECT_SOURCE_DIR
}
/proto/proto/caosdb/acm/v1alpha1/main.proto
)
ENDIF
()
#
IF (BUILD_ACM)
#
list(APPEND PROTO_FILES
#
${PROJECT_SOURCE_DIR}/proto/proto/caosdb/acm/v1alpha1/main.proto
#
)
#
ENDIF()
find_package
(
protobuf REQUIRED
)
include_directories
(
${
Protobuf_INCLUDE_DIRS
}
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
# protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROTO_FILES})
protobuf_generate_cpp
(
PROTO_SRCS PROTO_HDRS
${
PROJECT_SOURCE_DIR
}
/proto/proto/caosdb/info/v1/main.proto
)
protobuf_generate_cpp
(
PROTO_SRCS PROTO_HDRS
${
PROJECT_SOURCE_DIR
}
/proto/proto/caosdb/entity/v1/main.proto
)
message
(
STATUS
"PROTO_FILES:
${
PROTO_FILES
}
"
)
message
(
STATUS
"PROTO_SRCS:
${
PROTO_SRCS
}
"
)
message
(
STATUS
"PROTO_HDRS:
${
PROTO_HDRS
}
"
)
#
find_package(protobuf REQUIRED)
#
include_directories(${Protobuf_INCLUDE_DIRS})
#
include_directories(${CMAKE_CURRENT_BINARY_DIR})
#
# protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROTO_FILES})
# #
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROJECT_SOURCE_DIR}/proto/proto/caosdb/info/v1/main.proto)
#
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROJECT_SOURCE_DIR}/proto/proto/caosdb/entity/v1/main.proto)
#
message(STATUS "PROTO_FILES: ${PROTO_FILES}")
#
message(STATUS "PROTO_SRCS: ${PROTO_SRCS}")
#
message(STATUS "PROTO_HDRS: ${PROTO_HDRS}")
# set(PROTO_PATH ${PROJECT_SOURCE_DIR}/proto/proto)
...
...
@@ -184,12 +186,20 @@ find_package(gRPC CONFIG REQUIRED)
# find_package(protobuf CONFIG REQUIRED)
# boost
find_package
(
boost_smart_ptr CONFIG REQUIRED
)
find_package
(
boost_filesystem CONFIG REQUIRED
)
find_package
(
boost_json CONFIG REQUIRED
)
find_package
(
boost_log CONFIG REQUIRED
)
find_package
(
boost_thread CONFIG REQUIRED
)
find_package
(
boost_beast CONFIG REQUIRED
)
find_package
(
Boost REQUIRED
)
# find_package(boost_smart_ptr CONFIG REQUIRED)
# find_package(boost_filesystem CONFIG REQUIRED)
# find_package(boost_json CONFIG REQUIRED)
# find_package(boost_log CONFIG REQUIRED)
# find_package(boost_thread CONFIG REQUIRED)
# find_package(boost_beast CONFIG REQUIRED)
find_package
(
Boost COMPONENTS json REQUIRED
)
find_package
(
Boost COMPONENTS filesystem REQUIRED
)
find_package
(
Boost COMPONENTS log REQUIRED
)
find_package
(
Boost COMPONENTS thread REQUIRED
)
find_package
(
Boost COMPONENTS system REQUIRED
)
# find_package(Boost COMPONENTS smart_ptr REQUIRED)
find_package
(
Boost COMPONENTS beast REQUIRED
)
find_package
(
GTest REQUIRED
)
...
...
@@ -197,7 +207,7 @@ find_package(GTest REQUIRED)
set
(
dependencies
gRPC::gpr gRPC::grpc gRPC::grpc++ protobuf::libprotoc protobuf::libprotobuf
Boost::beast Boost::smart_ptr
Boost::filesystem Boost::json Boost::log Boost::thread
)
Boost::filesystem Boost::json Boost::log Boost::thread
)
# print include directories for debugging
message
(
DEBUG
"CMAKE_INCLUDE_PATH:
${
CMAKE_INCLUDE_PATH
}
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment