Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] CMake #55

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open

[WIP] CMake #55

wants to merge 20 commits into from

Conversation

superjax
Copy link
Contributor

@superjax superjax commented Feb 13, 2020

As it currently stands, the VCP is not happy. It crashes. However, the blink example builds and works

the CMake build flow is a little different from the MakeFiles. The way you build is

cd <airbourne_root>
mkdir build
cd build
cmake .. # Optionally add -DCMAKE_BUILD_TYPE=Release
make blink -j4 -l4 # if you want to build the `blink` example

to flash the example

make flash_blink

If you want to go straight to flashing, you can!

mkdir build
cd build
cmake ..
make flash_blink -j4 -l4

This PR is based on #54, so as soon as that is merged in, this PR will be only build changes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants