Git Product home page Git Product logo

magnet's Introduction

Magnet

🧲 Magnet is a minimalist dependency manager for your next C++ project.

πŸ— Currently, it is not production ready and thus should be used carefully.️


πŸ’« Features

Feature Ready?
CLI tool βœ…
Global command magnet βœ…
No lock-in βœ…
Run Magnet on existing projects ❌
Bootstrap a new C++ project with a single command βœ…
Fine tuning after project creation (customize README, LICENSE, .gitignore, etc.) βœ…
Edit individual CMakeLists.txt files for full customization ❌
Automatically generate CMakeLists.txt files based on your dependencies and project structure βœ…
Pull dependencies from GitHub / GitLab / BitBucket βœ…
Switch dependency branch βœ…
Remove installed dependencies βœ…
macOS support (Xcode / Ninja generator) βœ…
Windows support (Visual Studio 17 / Ninja generator) βœ…
Linux support (Ninja generator) βœ…

See FAQ down below for more information.

πŸš€ Getting Started

Create your brand new C++ project with a single command:

magnet new

Every time your source code changes, simply run:

magnet generate

to regenerate your project files.

πŸ’‘ Note: If you use CLion, this is done automatically.


Building your project is as easy as running:

magnet build

Then, launch your project with:

magnet go

πŸ’‘ Note: This will only work if your project is an executable. Also, the default configuration is Debug. To change that, run magnet config [Debug/Release].


To install a dependency, run:

magnet pull <dependency>

where <dependency> is the GitHub repository of the dependency you want to install.

πŸ’‘ Note: Instead of a full GitHub URL, you can also use the shorthand notation username/repository.

πŸ’‘ Note: You can list all installed dependencies by running magnet pull --list.

πŸ’‘ Note: If no argument is provided, Magnet will pull all dependencies for this project. Useful for when cloning a project from GitHub that was created with Magnet.


To remove a dependency, simply run:

magnet remove <dependency>

where <dependency> is the name of the dependency you want to remove.

Yes, removing a git submodule is that easy.


If you'd like to switch a dependency to a different branch, run:

magnet switch <dependency> <branch>

where <dependency> is the name of the dependency you want to switch and <branch> is the branch you want to switch to.


That's not all. You can explore every possible command by running:

magnet help

πŸ› οΈ Installation

Clone repo: git clone https://github.com/futureblur/magnet.git --recursive

Follow the instructions for your system:

macOS:

  1. Make sure you have Homebrew installed
  2. Run the installer: cd magnet/scripts && chmod +x ./macOSInstaller.sh:
    • Xcode: ./macOSInstaller.sh --xcode
    • CLion (Ninja): ./macOSInstaller.sh --ninja

Windows:

  1. Install CMake
  2. Run your desired installer in magnet/scripts:
    • Visual Studio 17: Double-click WindowsInstaller (Visual Studio 17).bat
    • CLion (Ninja): Double-click WindowsInstaller (Ninja).bat

Linux:

  1. Run the installer: cd magnet/scripts && chmod +x ./LinuxInstaller.sh && ./LinuxInstaller.sh

πŸ“Ž FAQ

How does Magnet work under the hood?

Magnet is built on top of CMake β€” the "unofficial" official build system for C++ . It leverages CMake to generate your project files, and git submodules to manage your dependencies.

Think of it like that: Magnet speeds up the process of setting up a new C++ project, creating CMakeLists.txt files, handling dependencies, and more – without you ever writing a single line of CMake code, or executing a single git command.

Why can't I use Magnet on an existing project?

We are working on a way to make Magnet work on existing projects. Right now, it can only bootstrap new projects due to fundamental differences of project structures.

Why can't I edit my CMakeLists.txt files?

Magnet generates these on the fly, everytime you run magnet generate or magnet pull – hence why any changes will be overwritten.

However, support for this is planned for the future.

Is Magnet a build tool?

No. Magnet is a dependency manager. It delegates the actual building process to CMake.

Is my project tied to Magnet?

No. Magnet is not a lock-in. You can use Magnet to bootstrap your project, and then never use it again (though this defeats the purpose of a dependency manager).

πŸ›οΈ History

Let’s face it: managing your dependencies in a C++ project is a pain in the butt.

On one hand, you can let existing solutions like Conan or vcpkg handle that, and on the other hand, you could take it on yourself and embrace the countless hours wasted on setting up a new project with your desired dependencies.

But here’s the problem: when you’re in the middle of creating a project and are searching for a solution, you don’t have the time to learn new tech.

In fact, you’ll never have time to learn every new tool that probably isn’t worth dedicating your time to. You want something that can be set up in minutes.

And here’s where Magnet comes into play.


πŸ’‘ The Idea

We take a different approach. We like to simplify things. To a point where it’s not even possible anymore.

Magnet does not lock you in. You are completely in charge of your entire project. At all times.

Magnet is not a new build tool. Nor does it host packages in a dedicated cloud. Instead, we leverage existing, battle-tested technologies to do the heavy lifting.

What you see, is what you get.

Installing Magnet for your system takes 60 seconds. Pulling a dependency, 10 seconds. Scaffolding a new project, 5 seconds.

Imagine what you could do will all of this free time now. Say goodbye to unexpected setup errors: allowing you to focus on coding and innovating great products.


πŸ“ License

Magnet is licensed under the GNU GPLv3 license.

magnet's People

Contributors

dario-loi avatar rdsov 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.