master
= 2022-05-27 18:25:19 +08:00
parent bec4ffdfe8
commit d5c7f69df9
3 changed files with 32 additions and 1 deletions

21
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,21 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\cygwin64\\bin\\gcc.exe",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64",
"compileCommands": "${workspaceFolder}/cmake_lib/build/compile_commands.json"
}
],
"version": 4
}

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"files.associations": {
"atomic": "cpp",
"*.tcc": "cpp",
"compare": "cpp",
"numeric": "cpp",
"cmath": "cpp",
"iostream": "cpp"
}
}

View File

@ -1,7 +1,7 @@
#include <iostream> #include <iostream>
#include "add.h" #include "add.h"
#include "sub.h" #include "sub.h"
using namespace std;
int main (int, char **) int main (int, char **)
{ {
std::cout << "Hello, world!\n"; std::cout << "Hello, world!\n";