Skip to content

Commit

Permalink
Adds worldline source code
Browse files Browse the repository at this point in the history
  • Loading branch information
stakira committed Mar 29, 2024
1 parent b339f94 commit 0176693
Show file tree
Hide file tree
Showing 61 changed files with 5,146 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cpp/.bazelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build --enable_platform_specific_config

build:linux --cxxopt='-std=c++17'
build:macos --cxxopt='-std=c++17'
build:windows --cxxopt='/std:c++17'
1 change: 1 addition & 0 deletions cpp/.bazelversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.0.2
6 changes: 6 additions & 0 deletions cpp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

build/
runtimes/
bazel-*

.vscode/settings.json
22 changes: 22 additions & 0 deletions cpp/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "default",
"includePath": [
"${default}",
"${workspaceFolder}/",
"${workspaceFolder}/bazel-cpp/external/abseil-cpp~20240116.1",
"${workspaceFolder}/bazel-cpp/external/googletest~1.14.0.bcr.1/googletest/include",
"${workspaceFolder}/bazel-cpp/external/libgvps",
"${workspaceFolder}/bazel-cpp/external/libnpy/include",
"${workspaceFolder}/bazel-cpp/external/libpyin",
"${workspaceFolder}/bazel-cpp/external/spline/src",
"${workspaceFolder}/bazel-cpp/external/world/src",
"${workspaceFolder}/bazel-cpp/external/world/tools",
],
"cStandard": "c11",
"cppStandard": "c++17",
}
],
"version": 4
}
Empty file added cpp/BUILD.bazel
Empty file.
5 changes: 5 additions & 0 deletions cpp/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Worldline"""
module(name = "worldline")

bazel_dep(name = "abseil-cpp", version = "20240116.1", repo_name = "absl")
bazel_dep(name = "googletest", version = "1.14.0", repo_name = "gtest")
Loading

0 comments on commit 0176693

Please sign in to comment.