mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
minor cleanups
This commit is contained in:
parent
c63de3b6f7
commit
afece35e60
1 changed files with 6 additions and 5 deletions
|
@ -3,13 +3,15 @@
|
|||
# author: Gunther Laure
|
||||
#
|
||||
|
||||
cmake_minimum_required (VERSION 3.6)
|
||||
cmake_minimum_required(VERSION 3.6)
|
||||
|
||||
project(arabica)
|
||||
|
||||
set(LIB_NAME arabica)
|
||||
# Enable C++11 support
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
set(LIB_NAME arabica)
|
||||
|
||||
#
|
||||
# Build as shared library
|
||||
#
|
||||
|
@ -46,8 +48,7 @@ endif()
|
|||
|
||||
#
|
||||
# Enable target folders in Visual Studio and other IDEs
|
||||
set_property(GLOBAL
|
||||
PROPERTY USE_FOLDERS ON)
|
||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||
|
||||
#
|
||||
# Set the used xml backend
|
||||
|
@ -420,7 +421,7 @@ if(MSVC)
|
|||
# link socket library in windows
|
||||
target_link_libraries(${LIB_NAME}
|
||||
ws2_32.lib
|
||||
)
|
||||
)
|
||||
endif()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue