f0990fae4b
PermGen can be tweaked from the settings menu Groups are saved on change/exit Install target is no longer completely broken All the deplibs are now static Added notes dialog Fixed ini file format support (can save strings with newlines, tabs. UTF-8 is explicitly used!) Rename button now uses line breaks so it doesn't grow ever wider (Added a custom tool button subclass) There is now a CAT button. Meow.
52 lines
1.0 KiB
CMake
52 lines
1.0 KiB
CMake
project(libSettings)
|
|
|
|
# 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
|
|
|
|
include/inifile.h
|
|
|
|
include/settingsobject.h
|
|
include/setting.h
|
|
include/overridesetting.h
|
|
|
|
include/basicsettingsobject.h
|
|
include/inisettingsobject.h
|
|
|
|
include/keyring.h
|
|
)
|
|
|
|
SET(LIBSETTINGS_HEADERS_PRIVATE
|
|
src/stubkeyring.h
|
|
)
|
|
|
|
SET(LIBSETTINGS_SOURCES
|
|
src/inifile.cpp
|
|
|
|
src/settingsobject.cpp
|
|
src/setting.cpp
|
|
src/overridesetting.cpp
|
|
|
|
src/basicsettingsobject.cpp
|
|
src/inisettingsobject.cpp
|
|
|
|
src/keyring.cpp
|
|
src/stubkeyring.cpp
|
|
)
|
|
|
|
# Set the include dir path.
|
|
SET(LIBSETTINGS_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include" PARENT_SCOPE)
|
|
include_directories(${LIBSETTINGS_INCLUDE_DIR})
|
|
|
|
add_definitions(-DLIBSETTINGS_LIBRARY)
|
|
|
|
add_library(libSettings STATIC ${LIBSETTINGS_SOURCES} ${LIBSETTINGS_HEADERS} ${LIBSETTINGS_HEADERS_PRIVATE})
|
|
qt5_use_modules(libSettings Core)
|
|
target_link_libraries(libSettings)
|