Skip to content

Commit c0b8453

Browse files
nscoolinggeekbozu
authored andcommitted
added extra .sh build files
1 parent c50f2b7 commit c0b8453

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

.devcontainer/build_app.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
cmake --build /workspaces/Pinetime/build --config Release -- -j6 pinetime-app

.devcontainer/make_build_dir.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release -DUSE_OPENOCD=1 -DARM_NONE_EABI_TOOLCHAIN_PATH=/opt/gcc-arm-none-eabi-9-2020-q2-update -DNRF5_SDK_PATH=/opt/nRF5_SDK_15.3.0_59ac345 /workspaces/Pinetime

.vscode/c_cpp_properties.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"compilerPath": "/usr/bin/gcc",
10+
"cStandard": "gnu11",
11+
"cppStandard": "gnu++14",
12+
"intelliSenseMode": "linux-gcc-x64",
13+
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
14+
}
15+
],
16+
"version": 4
17+
}

0 commit comments

Comments
 (0)