2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-23 05:42:28 +00:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Jackarain
9561ebad1c Fix mingw cross-compile 2024-07-31 08:19:56 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ else()
endif()
if (WIN32)
target_link_libraries(boost_process PUBLIC ntdll shell32 Advapi32 user32)
target_link_libraries(boost_process PUBLIC ntdll shell32 advapi32 user32)
endif()
if(BUILD_SHARED_LIBS)

View File

@@ -9,7 +9,7 @@
#include <boost/process/v2/error.hpp>
#if defined(BOOST_PROCESS_V2_WINDOWS)
#include <Windows.h>
#include <windows.h>
#endif
BOOST_PROCESS_V2_BEGIN_NAMESPACE