Skip to content

Commit 363060f

Browse files
Merge pull request #1 from WeiYang-Razer/wyvrnpm-bootstrap
Add wyvrnpm integration bootstrap
2 parents 941802d + c28c380 commit 363060f

3 files changed

Lines changed: 58 additions & 0 deletions

File tree

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,10 @@ compile_commands.json
5959
# Bazel output paths
6060
/bazel-*
6161
/MODULE.bazel.lock
62+
63+
# wyvrnpm-generated — do not commit
64+
/build/
65+
/wyvrn_internal/
66+
/wyvrn.lock
67+
/CMakePresets.json
68+
/CMakeUserPresets.json

.wyvrnignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Version control / editor / local
2+
.git/
3+
.gitignore
4+
.gitattributes
5+
.gitmodules
6+
.github/
7+
.vscode/
8+
.idea/
9+
10+
# Local build output + wyvrnpm-generated files
11+
build/
12+
wyvrn_internal/
13+
wyvrn.lock
14+
CMakePresets.json
15+
CMakeUserPresets.json
16+
*.tmp
17+
*.log
18+
19+
# Static/Dynamic lib: drop tests/docs/examples/CI, keep CMakeLists.txt
20+
test/
21+
tests/
22+
example/
23+
examples/
24+
doc/
25+
docs/
26+
docker/
27+
bin/
28+
appveyor.yml
29+
.travis.yml

wyvrn.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "jsoncpp",
3+
"version": "1.9.7.0",
4+
"schemaVersion": 2,
5+
"kind": "StaticLib",
6+
"description": "TODO: one-line description of jsoncpp",
7+
"dependencies": {},
8+
"build": {
9+
"system": "cmake",
10+
"configs": [
11+
"Debug",
12+
"Release",
13+
"RelWithDebInfo",
14+
"MinSizeRel"
15+
],
16+
"configure": [
17+
"-DJSONCPP_WITH_TESTS=OFF",
18+
"-DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF"
19+
],
20+
"installDir": "install"
21+
}
22+
}

0 commit comments

Comments
 (0)