minor cleanups

This commit is contained in:
Steffen Vogel 2017-11-15 17:10:02 +01:00
parent c63de3b6f7
commit afece35e60

View file

@ -3,13 +3,15 @@
# author: Gunther Laure # author: Gunther Laure
# #
cmake_minimum_required (VERSION 3.6) cmake_minimum_required(VERSION 3.6)
project(arabica) project(arabica)
set(LIB_NAME arabica) # Enable C++11 support
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 11)
set(LIB_NAME arabica)
# #
# Build as shared library # Build as shared library
# #
@ -46,8 +48,7 @@ endif()
# #
# Enable target folders in Visual Studio and other IDEs # Enable target folders in Visual Studio and other IDEs
set_property(GLOBAL set_property(GLOBAL PROPERTY USE_FOLDERS ON)
PROPERTY USE_FOLDERS ON)
# #
# Set the used xml backend # Set the used xml backend
@ -420,7 +421,7 @@ if(MSVC)
# link socket library in windows # link socket library in windows
target_link_libraries(${LIB_NAME} target_link_libraries(${LIB_NAME}
ws2_32.lib ws2_32.lib
) )
endif() endif()