2013-02-21 06:40:09 +05:30
|
|
|
project(libmmcsettings)
|
|
|
|
|
|
|
|
# Find Qt
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
|
|
|
|
# Include Qt headers.
|
|
|
|
include_directories(${Qt5Base_INCLUDE_DIRS})
|
|
|
|
include_directories(${Qt5Network_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
# Include utils library headers.
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/libutil/include)
|
|
|
|
|
|
|
|
SET(LIBSETTINGS_HEADERS
|
|
|
|
include/libsettings_config.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-02-21 06:40:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
SET(LIBSETTINGS_SOURCES
|
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-02-21 06:40:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
# Set the include dir path.
|
|
|
|
SET(LIBMMCSETTINGS_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include" PARENT_SCOPE)
|
|
|
|
|
|
|
|
add_definitions(-DLIBMMCSETTINGS_LIBRARY)
|
|
|
|
|
|
|
|
add_library(libmmcsettings SHARED ${LIBSETTINGS_SOURCES} ${LIBSETTINGS_HEADERS})
|
|
|
|
qt5_use_modules(libmmcsettings Core)
|
|
|
|
target_link_libraries(libmmcsettings libmmcutil)
|