Export from existing conan project the source code of all dependencies

closed account (9j26pfjN)
I'm developing a C++ project using the Beast boost library through conan package manager:

1
2
3
4
5
6
7
8
9
10
11
12
13
  # ...
include( ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake )

conan_basic_setup( TARGETS )

add_executable( ${ProjectName}
  ${CMAKE_SOURCE_DIR}/src/main.cpp )

target_include_directories( ${ProjectName}
  PRIVATE ${CMAKE_SOURCE_DIR}/include )

target_link_libraries( ${ProjectName} CONAN_PKG::boost_beast )
# ... 


Does conan provide an automatic way (or even semi-automatic, easy way) for me to export the whole project in a sort of a bundle with all the required source code included (i.e. all library code also) in order for some third party to compile it without access to internet or precompiled binaries?
Have you looked around and asked here -> https://conan.io/

Topic archived. No new replies allowed.