Git Product home page Git Product logo

adcm's Introduction

ADCM

Introduce

adcm is a python library that allow you to work on CMake project in Visual Studio Code easily with following features:

  • real-time CMakeLists.txt update.
  • custom workflow tasks and triggers.

This project was originally created to help me generate compile_commands.json automatically, which is needed by clangd extension in Visual Studio Code. Now I improve it further and public for everyone to use.

Example

project structure

Project-Dir/
|
|-- main.cpp
|-- CMakeList.txt
|-- workflow.py

necessary extensions

  • C/C++ by Microsoft
  • Python by Microsoft
  • clangd by LLVM
  • CMake Language Support by Jose Torres

NOTICE please uninstall extensions CMake and CMake Tools in advance.

workflow.py

import os
import adcm

adcm.new_project("my-project")

def mkdir_build():
    if not os.path.exists("build"):
        os.mkdir("build")

adcm.add_task(
    "generate",
    [
        mkdir_build,
        "cd build && cmake .. -G Ninja -D CMAKE_C_COMPILER=clang -D CMAKE_CXX_COMPILER=clang++ -D CMAKE_EXPORT_COMPILE_COMMANDS=ON"
    ]
)

adcm.add_trigger(
    "auto-cmake-generate",
    ["CMakeLists.txt"],
    ["generate"]
)

adcm.launch()

Then run workflow.py, and done.

Documentation

Read Documentation for more details.

License

Licensed under the MIT license, read LICENSE for details.

adcm's People

Contributors

anpydx avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.