Bit |
this is my code:
I am getting an error:expected unqualified-id before string constant - #include<iostream>
-
#include<string>
-
-
"version":1
-
"name":"Example project"
-
"build_commands": {
-
"CompileC++" : {
-
"action":"compile"
-
"args":["-fms-extensions", "-fms-compatibility", "-x", "c++", "-std=c++14", "-w"]
-
"sys_include_dir":["C:/include/ucrt", "C:/include/msvc"]
-
"include_dir":[""]
-
"comment":"The empty string in include_dir has the effect of adding the project folder to non-system header search path. For the record, any field not-interpreted by DevMax can be used to add comment like this."
-
}
-
"MakeExe" : {
-
"action":"link",
-
"args":["/defaultlib:msvcrt.lib", "/subsystem:Console"],
-
"sys_lib_dir":["C:/lib/msvc", "C:/lib/winsdk"]
-
}
-
},
-
"build_definitions": [
-
{
-
"name":"Build program",
-
"build_steps": [
-
{
-
"command":"CompileC++",
-
"inputs":["src/Source.cpp"]
-
},
-
{
-
"command":"MakeExe",
-
"inputs":["src/Source.o"],
-
"output":"Source.exe"
-
}
-
]
-
},
-
{
-
"name":"Inline/anonymous build command",
-
"build_steps": [
-
{
-
"action":"compile",
-
"args":["-fms-extensions", "-fms-compatibility", "-x", "c++", "-std=c++14", "-w"],
-
"sys_include_dir":["C:/include/ucrt", "C:/include/msvc"],
-
"include_dir":[""],
-
"inputs":["src/Source.cpp"]
-
}
-
can somebody help me please.
I am getting an error:expected unqualified-id before string constant
| |