This commit is contained in:
TinyAtoms 2022-03-28 16:05:01 -03:00
parent 7afcad994c
commit 1eaee782d1
6 changed files with 9 additions and 17 deletions

View File

@ -139,10 +139,10 @@
}, },
{ {
"name" : "HELPSTRING", "name" : "HELPSTRING",
"value" : "CXX compiler" "value" : "No help, variable specified on the command line."
} }
], ],
"type" : "STRING", "type" : "FILEPATH",
"value" : "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/clang.exe" "value" : "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/clang.exe"
}, },
{ {
@ -773,10 +773,6 @@
"name" : "CMAKE_RANLIB", "name" : "CMAKE_RANLIB",
"properties" : "properties" :
[ [
{
"name" : "ADVANCED",
"value" : "1"
},
{ {
"name" : "HELPSTRING", "name" : "HELPSTRING",
"value" : "noop for ranlib" "value" : "noop for ranlib"

View File

@ -35,7 +35,7 @@
} }
}, },
{ {
"jsonFile" : "cache-v2-397ae5ffd5bdf312f93f.json", "jsonFile" : "cache-v2-137b8c0a21010a3a01a4.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {
@ -77,7 +77,7 @@
"responses" : "responses" :
[ [
{ {
"jsonFile" : "cache-v2-397ae5ffd5bdf312f93f.json", "jsonFile" : "cache-v2-137b8c0a21010a3a01a4.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {

View File

@ -1,5 +1,3 @@
# ninja log v5 # ninja log v5
0 736 6701803708622022 CMakeFiles/mirror-test.dir/main.cpp.obj dfb79aae5b2c138d
738 888 6701803710372044 mirror-test.exe 343e8e4a47f4b03d
1 559 6701804198966472 CMakeFiles/mirror-test.dir/main.cpp.obj dfb79aae5b2c138d 1 559 6701804198966472 CMakeFiles/mirror-test.dir/main.cpp.obj dfb79aae5b2c138d
560 687 6701804200216175 mirror-test.exe 343e8e4a47f4b03d 560 687 6701804200216175 mirror-test.exe 343e8e4a47f4b03d

View File

@ -23,8 +23,8 @@ CMAKE_AR:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/
//No help, variable specified on the command line. //No help, variable specified on the command line.
CMAKE_BUILD_TYPE:STRING=Debug CMAKE_BUILD_TYPE:STRING=Debug
//CXX compiler //No help, variable specified on the command line.
CMAKE_CXX_COMPILER:STRING=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/clang.exe CMAKE_CXX_COMPILER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/clang.exe
//LLVM archiver //LLVM archiver
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/llvm-ar.exe CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/Llvm/x64/bin/llvm-ar.exe
@ -311,8 +311,6 @@ CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized //Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//noop for ranlib //noop for ranlib
CMAKE_RANLIB:INTERNAL=: CMAKE_RANLIB:INTERNAL=:
//ADVANCED property for variable: CMAKE_RC_COMPILER //ADVANCED property for variable: CMAKE_RC_COMPILER

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
#include <iostream> #include <iostream>
int main(){ int main(){
std::cout << "tiesto \n"; std::cout << "figure it out \n";
} }