2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 12:52:17 +00:00

Changed MySQL root passwd in Appveyor

This commit is contained in:
ruben
2020-04-02 20:15:07 +01:00
parent 268a68b7c7
commit 6602ce18c7
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ platform:
build_script:
- set PATH=C:\Program Files\MySQL\MySQL Server 5.7\bin;%PATH%
- mysqladmin --user=root Password12! ""
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
- mkdir build
- cd build

View File

@@ -20,8 +20,9 @@ function(_mysql_common_target_settings TARGET_NAME)
_WIN32_WINNT=0x0601 # Warnings in Windows (TODO: find a better way?)
_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING # Warnings in C++17 for Asio
)
# For some reason, Appveyor setup needs this to link against coroutine
target_link_directories(${TARGET_NAME} PRIVATE ${Boost_LIBRARY_DIRS})
target_compile_options(${TARGET_NAME} PRIVATE /bigobj)
target_compile_options(${TARGET_NAME} PRIVATE /bigobj) # Prevent failures on Windows
else()
target_compile_options(${TARGET_NAME} PRIVATE -Wall -Wextra -pedantic -Werror)
endif()