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
| 15:11:29 C:\workspace\libuv-test-commit-windows-cmake\out>cmake .. -DBUILD_TESTING=ON | |
| 15:11:29 -- Building for: Visual Studio 15 2017 | |
| 15:11:29 -- Selecting Windows SDK version 10.0.17763.0 to target Windows 10.0.14393. | |
| 15:11:30 -- The C compiler identification is MSVC 19.16.27039.0 | |
| 15:11:30 -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x86/cl.exe | |
| 15:11:31 -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x86/cl.exe - works | |
| 15:11:31 -- Detecting C compiler ABI info | |
| 15:11:32 -- Detecting C compiler ABI info - done | |
| 15:11:32 -- Detecting C compile features | |
| 15:11:32 -- Detecting C compile features - done |
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
| 12:36:58 C:\workspace\libuv-test-commit-windows-cmake\out>cmake .. -DBUILD_TESTING=ON | |
| 12:36:58 -- Building for: Visual Studio 15 2017 | |
| 12:36:58 -- Selecting Windows SDK version 10.0.17763.0 to target Windows 10.0.14393. | |
| 12:37:01 -- The C compiler identification is MSVC 19.16.27039.0 | |
| 12:37:01 -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x86/cl.exe | |
| 12:37:02 -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x86/cl.exe - works | |
| 12:37:02 -- Detecting C compiler ABI info | |
| 12:37:03 -- Detecting C compiler ABI info - done | |
| 12:37:03 -- Detecting C compile features | |
| 12:37:03 -- Detecting C compile features - done |
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 <windows.h> | |
| #include <stdio.h> | |
| int main() { | |
| LARGE_INTEGER prev, next; | |
| BOOL r; | |
| QueryPerformanceCounter(&prev); | |
| for (;;) { | |
| r = QueryPerformanceCounter(&next); | |
| if (r == 0 || next.QuadPart < prev.QuadPart) { |
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 <windows.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #define BUF_SIZE (128*1024) | |
| DWORD __stdcall thread_proc(void* num); | |
| HANDLE signal_event; | |
| int main() { |
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
| call npx create-react-native-module --module-name "%1" %1 | |
| cd %1 | |
| call yarn upgrade [email protected] --dev | |
| call yarn upgrade [email protected] --dev | |
| call yarn add react-native-windows@latest --dev | |
| call yarn install |
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
| call npx react-native init %1 --template react-native@^0.63.2 | |
| cd %1 | |
| call npx react-native-windows-init --overwrite | |
| call yarn | |
| call npx react-native run-windows |
OlderNewer