Skip to content

Commit

Permalink
Version 4.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Jun 23, 2019
2 parents 32787ec + 429a213 commit 04efaac
Show file tree
Hide file tree
Showing 391 changed files with 3,905 additions and 105,012 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
/bjam
/b2.exe
/bjam.exe
/bin
/.build
/bootstrap.log
/test/test_results.txt
/project-config.jam
/src/engine/b2
/src/engine/b2.exe
infer-out
242 changes: 0 additions & 242 deletions .travis.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/src/engine/b2",
"args": ["-sBOOST_BUILD_PATH=${workspaceFolder}" "toolset=clang"],
"stopAtEntry": true,
"cwd": "${workspaceFolder}/test",
"environment": [],
"externalConsole": true,
"MIMode": "lldb"
},
]
}
64 changes: 64 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "B2 Engine Build",
"type": "shell",
"windows": {
"command": "build.bat"
},
"osx": {
"command": "./build.sh"
},
"linux": {
"command": "./build.sh"
},
"options": {
"cwd": "src/engine"
},
"problemMatcher": {
"owner": "cpptools",
"fileLocation": [
"relative",
"${workspaceFolder}/src/engine"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": "build"
},
{
"label": "B2 Engine Infer",
"type": "shell",
"osx": {
"command": "CXX='infer run -- clang++' ./build.sh clang"
},
"options": {
"cwd": "src/engine"
},
"problemMatcher": {
"owner": "cpptools",
"fileLocation": [
"relative",
"${workspaceFolder}/src/engine"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}
Loading

0 comments on commit 04efaac

Please sign in to comment.