diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-27 11:02:40 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-27 11:02:40 -0600 |
commit | ef84548e3025184c4f631a23fceefb008dd6968b (patch) | |
tree | 84d25ec1d82475d7b10a7ab0fe4531cfdca3709e /panel-unity | |
parent | f320760f20b282e9b2695477ab602d4041a3ada8 (diff) | |
parent | ad76159088202f6e4390843cfed6dd712b8e2544 (diff) | |
download | ayatana-indicator-datetime-ef84548e3025184c4f631a23fceefb008dd6968b.tar.gz ayatana-indicator-datetime-ef84548e3025184c4f631a23fceefb008dd6968b.tar.bz2 ayatana-indicator-datetime-ef84548e3025184c4f631a23fceefb008dd6968b.zip |
merge lp:~robert-ancell/indicator-datetime/unity-control-center2 into lp:indicator-datetime
Diffstat (limited to 'panel-unity')
-rw-r--r-- | panel-unity/CMakeLists.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/panel-unity/CMakeLists.txt b/panel-unity/CMakeLists.txt new file mode 100644 index 0000000..150034c --- /dev/null +++ b/panel-unity/CMakeLists.txt @@ -0,0 +1,28 @@ +set (PANEL_LIB "unity-indicator-datetime") + +add_definitions (-DPKGDATADIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/${CMAKE_PROJECT_NAME}") + +SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -g ${CXX_WARNING_ARGS}") + +add_library (${PANEL_LIB} SHARED + ${CMAKE_SOURCE_DIR}/panel/datetime-prefs.c + ${CMAKE_SOURCE_DIR}/panel/datetime-prefs-locations.c + ${CMAKE_SOURCE_DIR}/panel/datetime-prefs-locations.h + ${CMAKE_SOURCE_DIR}/src/utils.cpp + ${CMAKE_SOURCE_DIR}/include/datetime/utils.h + ${CMAKE_SOURCE_DIR}/include/datetime/settings-shared.h) +set_property (TARGET ${PANEL_LIB} PROPERTY OUTPUT_NAME indicator-datetime) + +include_directories (SYSTEM ${UNITY_PANEL_DEPS_INCLUDE_DIRS}) + +link_directories (${UNITY_PANEL_DEPS_LIBRARY_DIRS}) + +set_property (TARGET ${PANEL_LIB} + APPEND_STRING PROPERTY COMPILE_FLAGS + " -g ${CC_WARNING_ARGS} ${GCOV_FLAGS} -DUSE_UNITY") + +target_link_libraries (${PANEL_LIB} ${UNITY_PANEL_DEPS_LIBRARIES} ${GCOV_LIBS}) + +install (TARGETS ${PANEL_LIB} + DESTINATION ${CMAKE_INSTALL_LIBDIR}/unity-control-center-1/panels) + |