-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
66 lines (56 loc) · 2.42 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# CMakeLists for elan2split
#
# (C) 2015-2016 by Damir Cavar <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.2.2)
project(elan2split)
set(EXECUTABLE_NAME "elan2split")
# make it static
#set(LINK_SEARCH_END_STATIC ON)
# add all .cpp and .h files to source
file(GLOB ALL_MY_SRC
"*.h"
"*.cpp")
set(CMAKE_CONFIGURATION_TYPES "Debug" CACHE STRING "" FORCE) # setting two custom configuration types
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) # "~/Projects/ELANSplit")
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_SOURCE_DIR})
#ICU lib
#find_package(ICU 4.4 COMPONENTS io i18n REQUIRED)
#include_directories(${ICU_INCLUDE_DIRS})
#find_library(ICU_LIBUIO NAMES libicuio.a)
#find_library(ICU_LIBUI18N NAMES libicui18n.a)
#find_library(ICU_LIBUC NAMES libicuuc.a)
#find_library(ICU_LIBUDATA NAMES libicudata.a)
#add_executable(tables tables.c)
# target_link_libraries(tables ${ICU_LIBRARIES})
# add Xerces C++ libs for XML parsing
#find_library(XercesLib NAMES xerces-c) # PATHS /usr/local/lib)
find_library(XercesLib NAMES xerces-c PATH /usr/local/lib )
#find_library(CURLLib NAMES curl PATH /usr/local/lib )
# add Boost libs
#set(Boost_USE_STATIC_LIBS OFF)
#set(Boost_USE_STATIC_RUNTIME OFF)
#set(Boost_USE_MULTITHREADED ON)
#set(BOOST_ALL_DYN_LINK ON)
#SET(BOOST_MIN_VERSION "1.57.0") # on Fedora 22
find_package(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS program_options filesystem system) # date_time system regex)
if (NOT Boost_FOUND)
message(FATAL_ERROR "Fatal error: Boost (version >= ${BOOST_MIN_VERSION}) required.\n")
endif (NOT Boost_FOUND)
if (Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
add_executable(${EXECUTABLE_NAME} ${Boost_LIBRARIES} ${CURLLib} ${XercesLib} ${ALL_MY_SRC})
target_link_libraries(${EXECUTABLE_NAME} ${Boost_LIBRARIES} ${CURLLib} ${XercesLib} )
endif()