This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AuthenticationByTouchIDWithMacOSCommandLineTool.swift | |
// | |
// | |
// Created by treastrain on 2021/03/26. | |
// | |
import LocalAuthentication | |
let context = LAContext() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// Shared | |
// | |
// Created by treastrain on 2021/03/03. | |
// | |
import SwiftUI | |
import Kronos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OpenCV-Playground: | |
echo OpenCV-Playground | |
buildclang: | |
clang++ -Wall -std=c++17 -O0 \ | |
-I../Libraries/opencv/include/opencv4 -L../Libraries/opencv/lib \ | |
-lopencv_core -lopencv_videoio -lopencv_imgproc -lopencv_imgcodecs \ | |
-o OpenCV-Playground \ | |
main.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
int main(int, char**) { | |
#if __cplusplus > 199711L | |
system("uname -a"); | |
#endif | |
// コンパイラの判定 | |
#ifdef __clang_version__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ date; ./swift/utils/build-script --release; date | |
2020年 12月 26日 土曜日 00:54:58 JST | |
[./swift/utils/build-script] NOTE: Using toolchain default | |
+ cmake --version | |
+ mkdir -p /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert | |
Building the standard library for: swift-test-stdlib-linux-armv7 | |
+ /usr/local/bin/cmake --build /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/cmark-linux-armv7 -- -j4 all | |
ninja: no work to do. | |
symlinking the system headers (/usr/include/c++) into the local clang build directory (/home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/llvm-linux-armv7/include). | |
+ ln -s -f /usr/include/c++ /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/llvm-linux-armv7/include |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
treastrain@raspberrypi:~/Developer/Libraries/swift-source $ date; ./swift/utils/build-script --release; date | |
2020年 12月 25日 金曜日 19:38:22 JST | |
[./swift/utils/build-script] NOTE: Using toolchain default | |
+ cmake --version | |
+ mkdir -p /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert | |
Building the standard library for: swift-test-stdlib-linux-armv7 | |
+ /usr/local/bin/cmake --build /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/cmark-linux-armv7 -- -j4 all | |
ninja: no work to do. | |
symlinking the system headers (/usr/include/c++) into the local clang build directory (/home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/llvm-linux-armv7/include). | |
+ ln -s -f /usr/include/c++ /home/treastrain/Developer/Libraries/swift-source/build/Ninja-ReleaseAssert/llvm-linux-armv7/include |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
attributes: | |
ORGANIZATIONNAME: treastrain / Tanaka Ryoga | |
name: JapanNFCReader | |
configs: | |
Debug: debug | |
Release: release | |
settings: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Linux", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"/usr/local/include/opencv4" | |
], | |
"defines": [], | |
"compilerPath": "/usr/bin/clang", |