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})
|
|
|
|
include_directories(${Qt5Network_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
SET(LIBSETTINGS_HEADERS
|
|
|
|
include/libsettings_config.h
|
|
|
|
|
2013-02-27 04:17:39 +05:30
|
|
|
include/inifile.h
|
|
|
|
|
2013-02-26 00:54:46 +05:30
|
|
|
include/settingsobject.h
|
|
|
|
include/setting.h
|
2013-02-26 04:06:27 +05:30
|
|
|
include/overridesetting.h
|
2013-02-26 00:54:46 +05:30
|
|
|
|
|
|
|
include/basicsettingsobject.h
|
2013-02-26 04:06:27 +05:30
|
|
|
include/inisettingsobject.h
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
include/keyring.h
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(LIBSETTINGS_HEADERS_PRIVATE
|
|
|
|
src/stubkeyring.h
|
2013-02-21 06:40:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
SET(LIBSETTINGS_SOURCES
|
2013-02-27 04:17:39 +05:30
|
|
|
src/inifile.cpp
|
|
|
|
|
2013-02-26 00:54:46 +05:30
|
|
|
src/settingsobject.cpp
|
|
|
|
src/setting.cpp
|
2013-02-26 04:06:27 +05:30
|
|
|
src/overridesetting.cpp
|
2013-02-26 00:54:46 +05:30
|
|
|
|
|
|
|
src/basicsettingsobject.cpp
|
2013-02-26 04:06:27 +05:30
|
|
|
src/inisettingsobject.cpp
|
2013-03-22 19:10:55 +05:30
|
|
|
|
|
|
|
src/keyring.cpp
|
|
|
|
src/stubkeyring.cpp
|
2013-02-21 06:40:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
# Set the include dir path.
|
2013-02-27 04:17:39 +05:30
|
|
|
SET(LIBSETTINGS_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include" PARENT_SCOPE)
|
|
|
|
include_directories(${LIBSETTINGS_INCLUDE_DIR})
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-08-26 06:23:29 +05:30
|
|
|
# Static link!
|
|
|
|
ADD_DEFINITIONS(-DLIBSETTINGS_STATIC)
|
|
|
|
|
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)
|
|
|
|
|
2013-08-26 02:18:41 +05:30
|
|
|
add_library(libSettings STATIC ${LIBSETTINGS_SOURCES} ${LIBSETTINGS_HEADERS} ${LIBSETTINGS_HEADERS_PRIVATE})
|
2013-02-27 04:17:39 +05:30
|
|
|
qt5_use_modules(libSettings Core)
|
|
|
|
target_link_libraries(libSettings)
|