This commit is contained in:
qPCR4vir 2019-12-05 13:03:09 +01:00
parent 0345d503ba
commit 514ebaf426
2 changed files with 5 additions and 6 deletions

View File

@ -39,8 +39,8 @@ endif()
if(NANA_STATIC_STDLIB) if(NANA_STATIC_STDLIB)
target_link_libraries(nana target_link_libraries(nana
PUBLIC PUBLIC
$<$<CXX_COMPILER_ID:GNU>:-static-libgcc> $<$<CXX_COMPILER_ID:GNU>:-static-libgcc -static-libstdc++>
$<$<CXX_COMPILER_ID:Clang>:-static-libstdc++> $<$<CXX_COMPILER_ID:Clang>:-static-libgcc -static-libstdc++>
) )
endif() endif()

View File

@ -1,4 +1,4 @@
/* /**
* Paint Image Implementation * Paint Image Implementation
* Nana C++ Library(http://www.nanapro.org) * Nana C++ Library(http://www.nanapro.org)
* Copyright(C) 2003-2019 Jinhao(cnjinhao@hotmail.com) * Copyright(C) 2003-2019 Jinhao(cnjinhao@hotmail.com)
@ -7,9 +7,8 @@
* (See accompanying file LICENSE_1_0.txt or copy at * (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt) * http://www.boost.org/LICENSE_1_0.txt)
* *
* @file: nana/paint/image.cpp * @file nana/paint/image.cpp
* @contributors: * @contributors nabijaczleweli(pr#106)
* nabijaczleweli(pr#106)
*/ */
#include <nana/push_ignore_diagnostic> #include <nana/push_ignore_diagnostic>