2013-02-27 04:17:39 +05:30
|
|
|
project(libSettings)
|
2013-02-21 06:40:09 +05:30
|
|
|
|
|
|
|
# Find Qt
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
|
|
|
|
# Include Qt headers.
|
|
|
|
include_directories(${Qt5Base_INCLUDE_DIRS})
|
|
|
|
|
2014-04-06 21:42:48 +05:30
|
|
|
include(UseCXX11)
|
|
|
|
include(Coverage)
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2014-04-06 23:13:09 +05:30
|
|
|
set(LIBSETTINGS_SOURCES
|
2014-04-09 19:11:49 +05:30
|
|
|
libsettings_config.h
|
2013-02-27 04:17:39 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
inifile.h
|
|
|
|
inifile.cpp
|
2013-02-26 00:54:46 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
settingsobject.h
|
|
|
|
settingsobject.cpp
|
|
|
|
inisettingsobject.h
|
|
|
|
inisettingsobject.cpp
|
2013-03-22 19:10:55 +05:30
|
|
|
|
2014-04-09 19:11:49 +05:30
|
|
|
setting.h
|
|
|
|
setting.cpp
|
|
|
|
overridesetting.h
|
|
|
|
overridesetting.cpp
|
2013-02-21 06:40:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
# Set the include dir path.
|
2014-04-06 23:13:09 +05:30
|
|
|
set(LIBSETTINGS_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" PARENT_SCOPE)
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-08-26 06:23:29 +05:30
|
|
|
# Static link!
|
2014-04-06 23:13:09 +05:30
|
|
|
add_definitions(-DLIBSETTINGS_STATIC)
|
2013-08-26 06:23:29 +05:30
|
|
|
|
2013-02-27 04:17:39 +05:30
|
|
|
add_definitions(-DLIBSETTINGS_LIBRARY)
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-08-26 06:23:29 +05:30
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
2014-01-01 19:38:40 +05:30
|
|
|
add_library(libSettings STATIC ${LIBSETTINGS_SOURCES})
|
2013-02-27 04:17:39 +05:30
|
|
|
qt5_use_modules(libSettings Core)
|
|
|
|
target_link_libraries(libSettings)
|