mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +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
|
# 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()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue