Skip to content

JohnItoo/folly-conan-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Folly and Conan Sample

How To Try

Docker

The simplest way is to use Docker and Dockerfile from the repository. For example:

git clone https://github.com/JohnItoo/folly-conan-example
cd folly-conan-example
docker build -t myfolly-conan-example .
docker run -it myfolly-conan-example /bin/bash
folly-conan-example/build/bin/sample
exit

All necessary steps like installing Python, PIP, conan, CMake and so on are performed in Dockerfile. You can inspect Dockerfile content to see how conan can be configured and used.

Manual Build

To perform manual build it is necessary to have conan and CMake installed. Then you can do the following steps:

# Clone the demo repository.
git clone https://github.com/JohnItoo/folly-conan-example
cd folly-conan-example
# Build the example.
mkdir build && cd build
conan install .. --build=missing
cmake ..
cmake --build . --config Release
# Check the example.
./bin/sample

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published