mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-09 15:50:26 +03:00
Fix win32 resource compilation with msys
squash! Fix win32 resource winres.h is missing for mingw
This commit is contained in:
parent
e5c72cae83
commit
76549d0a4a
Binary file not shown.
BIN
Win32/resource.h
BIN
Win32/resource.h
Binary file not shown.
6
Win32/winres.h
Normal file
6
Win32/winres.h
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#ifndef WINRES_H__
|
||||||
|
#define WINRES_H__
|
||||||
|
|
||||||
|
#include <winresrc.h>
|
||||||
|
|
||||||
|
#endif
|
@ -104,9 +104,9 @@ include(CheckCXXCompilerFlag)
|
|||||||
CHECK_CXX_COMPILER_FLAG("-std=c++11" CXX11_SUPPORTED)
|
CHECK_CXX_COMPILER_FLAG("-std=c++11" CXX11_SUPPORTED)
|
||||||
CHECK_CXX_COMPILER_FLAG("-std=c++0x" CXX0X_SUPPORTED)
|
CHECK_CXX_COMPILER_FLAG("-std=c++0x" CXX0X_SUPPORTED)
|
||||||
if (CXX11_SUPPORTED)
|
if (CXX11_SUPPORTED)
|
||||||
add_definitions( "-std=c++11" )
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" )
|
||||||
elseif (CXX0X_SUPPORTED) # gcc 4.6
|
elseif (CXX0X_SUPPORTED) # gcc 4.6
|
||||||
add_definitions( "-std=c++0x" )
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x" )
|
||||||
elseif (NOT MSVC)
|
elseif (NOT MSVC)
|
||||||
message(SEND_ERROR "C++11 standart not seems to be supported by compiler. Too old version?")
|
message(SEND_ERROR "C++11 standart not seems to be supported by compiler. Too old version?")
|
||||||
endif ()
|
endif ()
|
||||||
@ -138,10 +138,12 @@ elseif (CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
|
|||||||
elseif (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR MSYS)
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR MSYS)
|
||||||
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonWin32.cpp")
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonWin32.cpp")
|
||||||
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/Win32/Win32Service.cpp")
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/Win32/Win32Service.cpp")
|
||||||
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/Win32/Resource.rc")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (WITH_AESNI)
|
if (WITH_AESNI)
|
||||||
add_definitions ( "-maes -DAESNI" )
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maes" )
|
||||||
|
add_definitions ( -DAESNI )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# libraries
|
# libraries
|
||||||
|
Loading…
Reference in New Issue
Block a user