https://github.com/stefanofiorentino/uvw_static_lib_client
minimal test for statically link the uvw lib
https://github.com/stefanofiorentino/uvw_static_lib_client
cpp17 cpp17-library libuv uvw
Last synced: 11 months ago
JSON representation
minimal test for statically link the uvw lib
- Host: GitHub
- URL: https://github.com/stefanofiorentino/uvw_static_lib_client
- Owner: stefanofiorentino
- License: mit
- Created: 2020-03-13T16:46:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-05T10:15:01.000Z (over 2 years ago)
- Last Synced: 2025-01-31T16:56:25.464Z (over 1 year ago)
- Topics: cpp17, cpp17-library, libuv, uvw
- Language: CMake
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uvw_static_lib_client
minimal test for statically link the uvw lib
# example of time enhancement
```
~/devel/uvw_static_lib_client/cmake-build-debug (master)
└─ $ ▶ make clean
~/devel/uvw_static_lib_client/cmake-build-debug (master)
└─ $ ▶ time make uvw_header_only_client
Scanning dependencies of target uvw_header_only_client
[ 50%] Building CXX object CMakeFiles/uvw_header_only_client.dir/main.cpp.o
[100%] Linking CXX executable uvw_header_only_client
[100%] Built target uvw_header_only_client
real 0m6,692s
user 0m6,361s
sys 0m0,311s
~/devel/uvw_static_lib_client/cmake-build-debug (master)
└─ $ ▶ make clean
~/devel/uvw_static_lib_client/cmake-build-debug (master)
└─ $ ▶ time make uvw_static_lib_client
[ 50%] Building CXX object CMakeFiles/uvw_static_lib_client.dir/main.cpp.o
[100%] Linking CXX executable uvw_static_lib_client
[100%] Built target uvw_static_lib_client
real 0m2,499s
user 0m2,287s
sys 0m0,213s
```