mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-19 04:12:09 +00:00
Auto-linking can still be useful to users of MSVC and compatible compilers on Windows, when the user links against static build of Boost.Filesystem. This feature is marked deprecated though, so it can be removed in the future, when the generated CMake config files include information about third-party dependencies of Boost libraries. Additionally, restored support for linking against Windows CE-cpecific coredll library. This platform is not tested though and therefore not properly supported. Closes https://github.com/boostorg/filesystem/issues/156.
15 lines
292 B
C++
15 lines
292 B
C++
// Copyright 2020 Andrey Semashev
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
// See library home page at http://www.boost.org/libs/filesystem
|
|
|
|
#if !defined(_WIN32_WCE)
|
|
#error "This is not Windows CE"
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
}
|