Skip to main content

No project description provided

Project description

Clark's Conan, CMake, C++ Project Tools

Note: this is a rewrite of a another project https://github.com/CD3/cccpt and does not fully support Windows yet.

This project started out as a collection of small scripts to automate the configure, build, and testing steps of C++ projects I work on. It has since grown to include several small utilities that I have found useful while working on C++ projects.

Overview

While CMake has its issues, and there are many that despise it, it is the de facto standard for building C++ projects. Most people's objections with CMake have to do with its home-grown scripting language. The command line interface is actually quite nice. Not only does it support multiple generators, but it abstracts away many of the differences between the generated build systems. For example, on Linux, you might do something like this:

$ mkdir build
$ cd build
$ cmake ..
$ make

But on Windows you might do:

$ mkdir build
$ cd build
$ cmake ..
$ msbuild MyProject.vcxproj

But with the cmake --build tool, you can do

$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .

This works for Makefiles, Visual Studio Solutions, Ninja, etc. What's more, if you follow the normal conventions, these four lines should build any CMake project you create (things get more complicated if you need to support custom options, but you should still have a default build that will just work).

I found that I was constantly running these commands, so I just put them into a script and eventually that morphed into ccc. I also do most of my development on Linux, but occasionally need to build projects on Windows (mostly for testing), so I wanted something I could run on either platform and have it "just work".

Usage

Installing

You can install ccc with pip.

$ pip install conan-cmake-cpp-project-tools

This may be an out-of-date version. To use the latest version, clone this repository and install with pip

$ cd cccpt
$ pip install .

Requirements

ccc expects several standard tools to be installed. It makes use of these tools wherever possible, rather than re-implementing functionality. Current dependencies are:

  • Python (required)
  • CMake (required)
  • git (required)
  • Conan (optional)

If you don't use these tools, then ccc won't be useful.

Commands

To build a C++ project, run

$ ccc build

from anywhere in the project directory. This will create a build directory in the project root (git is used to find the project root), install any dependencies specified in a conanfile.txt file, and configure and build (by default, Debug mode is built) the project.

To run the unit tests

$ ccc test

This will automatically run the build step, so it possible to run this command on a fresh copy of the project. Currently this command just looks for executables created in the build directory that match file name patterns I commonly use, so it may not work for you.

To build or test in Release mode, pass either command the -R option.

To get a list of all source files in the project

$ ccc list-sources

This is useful for triggering the unit tests to run when a file changes with the entr command.

$ ccc list-sources | entr ccc test

To install a project into a given root directory

$ ccc install /path/to/install/dir

This will run CMake with the -DCMAKE_INSTALL_PREFIX=/path/to/install/dir option, build the project in release mode, and then run cmake --build . --target install.

There are many other commands that I find useful in my developement workflow. You may or may not find them useful. To get a list of all commands, run

$ ccc --help

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

conan_cmake_cpp_project_tools-0.6.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

conan_cmake_cpp_project_tools-0.6-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file conan_cmake_cpp_project_tools-0.6.tar.gz.

File metadata

  • Download URL: conan_cmake_cpp_project_tools-0.6.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.6 Linux/5.15.0-52-generic

File hashes

Hashes for conan_cmake_cpp_project_tools-0.6.tar.gz
Algorithm Hash digest
SHA256 90bae9f99b9829fb3cfcfd7e140a6de83b1fbe0a628023bc5dae9568c712ff22
MD5 5d1639b4087d8809d074c0890abb35ad
BLAKE2b-256 5fac121ebfaf021bb5863043c54e7c0b9c6bb8db7a0d83b37e2d4ddf219f44d3

See more details on using hashes here.

File details

Details for the file conan_cmake_cpp_project_tools-0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for conan_cmake_cpp_project_tools-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 4f10ffa48dc3b8411da6a7f836c1da404307b96b55391f9251609607d2fca250
MD5 c4814f0d5b6895da6edb4da3cbf527e2
BLAKE2b-256 db94c44cfeb3e114e6e6abe7648b07b163a76066a350134b670bb967f9e6b58c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page