Skip to content

Commit

Permalink
1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
toyobayashi committed Sep 19, 2018
1 parent ba13344 commit b82e3cb
Show file tree
Hide file tree
Showing 22 changed files with 3,036 additions and 2,797 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build/
src/sqlite3/*
!src/sqlite3/README.md
src/ACBExtractor/*
!src/ACBExtractor/README.md
21 changes: 21 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.17134.0",
"compilerPath": "${env:VS_ROOT}/2017/Community/VC/Tools/MSVC/14.15.26726/bin/Hostx64/x64/cl.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "msvc-x64"
}
],
"version": 4
}
32 changes: 32 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "debug-x64",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/x64/Debug/${config:targetName}.exe",
"args": ["-v", "10044600", "-o", "bgm"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build/x64/Debug/",
"environment": [],
"externalConsole": true,
"preLaunchTask": "debug-x64"
},
{
"name": "debug-x86",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/x86/Debug/${config:targetName}.exe",
"args": ["-v", "10044600", "-o", "bgm"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"preLaunchTask": "debug-x86"
}
]
}
58 changes: 58 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"targetName": "CGSSAssetsDownloader",
"sources": [
"src/*.cpp",
"src/ACBExtractor/*.cpp",
"src/sqlite3/sqlite3.c"
],
"files.associations": {
"cmath": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"memory": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"utility": "cpp",
"vector": "cpp",
"xfacet": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocinfo": "cpp",
"xlocnum": "cpp",
"xmemory": "cpp",
"xmemory0": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xutility": "cpp",
"algorithm": "cpp",
"ctime": "cpp",
"locale": "cpp",
"regex": "cpp",
"xlocbuf": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xloctime": "cpp"
}
}
62 changes: 62 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "debug-x64",
"type": "shell",
"command": "${workspaceFolder}/vcbuild",
"args": [
"x64",
"Debug",
"${workspaceFolder}",
"${config:targetName}",
"${config:sources}"
],
"group": "build"
},
{
"label": "release-x64",
"type": "shell",
"command": "${workspaceFolder}/vcbuild",
"args": [
"x64",
"Release",
"${workspaceFolder}",
"${config:targetName}",
"${config:sources}"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "debug-x86",
"type": "shell",
"command": "${workspaceFolder}/vcbuild",
"args": [
"x86",
"Debug",
"${workspaceFolder}",
"${config:targetName}",
"${config:sources}"
],
"group": "build"
},
{
"label": "release-x86",
"type": "shell",
"command": "${workspaceFolder}/vcbuild",
"args": [
"x86",
"Release",
"${workspaceFolder}",
"${config:targetName}",
"${config:sources}"
],
"group": "build"
}
]
}
Loading

0 comments on commit b82e3cb

Please sign in to comment.