Merge pull request #1 from mandreyel/master

update fork
This commit is contained in:
Shivendra Agarwal 2020-12-20 23:36:50 +05:30 committed by GitHub
commit 0a2b6cbd88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -59,6 +59,7 @@ Moreover, in each case, you can provide either some string type for the file's p
#include <sys/stat.h>
#include <fcntl.h>
#include <mio/mmap.hpp>
// #include <mio/mio.hpp> if using single header
#include <algorithm>
int main()
@ -78,6 +79,7 @@ for functions where character strings are expected (e.g. path parameters).
```c++
#include <mio/mmap.hpp>
// #include <mio/mio.hpp> if using single header
#include <system_error> // for std::error_code
#include <cstdio> // for std::printf
#include <cassert>

View File

@ -18,8 +18,8 @@ if(WIN32)
PRIVATE mio::mio_full_winapi)
add_test(NAME mio.fullwinapi.test COMMAND mio.fullwinapi.test)
add_executable(mio.fullwinapi.test test.cpp)
target_link_libraries(mio.fullwinapi.test
add_executable(mio.minwinapi.test test.cpp)
target_link_libraries(mio.minwinapi.test
PRIVATE mio::mio_min_winapi)
add_test(NAME mio.minwinapi.test COMMAND mio.minwinapi.test)
endif()