diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2014-02-11 11:59:02 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2014-02-11 11:59:02 +1300 |
commit | 50f1783714c3f2427d8c68c79f2103bb06377abb (patch) | |
tree | ae6055b3d8044798c9874e3845161ffd7b4b5cb3 /panel-gnome | |
parent | 65eec54164026c8ee269c6c3db2509a856f632c3 (diff) | |
download | ayatana-indicator-datetime-50f1783714c3f2427d8c68c79f2103bb06377abb.tar.gz ayatana-indicator-datetime-50f1783714c3f2427d8c68c79f2103bb06377abb.tar.bz2 ayatana-indicator-datetime-50f1783714c3f2427d8c68c79f2103bb06377abb.zip |
Move date/time panel into unity-control-center
Diffstat (limited to 'panel-gnome')
-rw-r--r-- | panel-gnome/CMakeLists.txt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/panel-gnome/CMakeLists.txt b/panel-gnome/CMakeLists.txt deleted file mode 100644 index 82c511d..0000000 --- a/panel-gnome/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -set (PANEL_LIB "gnome-indicator-datetime") - -add_definitions (-DPKGDATADIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}/${CMAKE_PROJECT_NAME}") - - -SET (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -g") -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.c - ${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 ${PANEL_DEPS_INCLUDE_DIRS}) - -link_directories (${PANEL_DEPS_LIBRARY_DIRS}) - -set_property (TARGET ${PANEL_LIB} - APPEND_STRING PROPERTY COMPILE_FLAGS - " -g ${CC_WARNING_ARGS} ${GCOV_FLAGS}") - -target_link_libraries (${PANEL_LIB} ${PANEL_DEPS_LIBRARIES} ${GCOV_LIBS}) - -install (TARGETS ${PANEL_LIB} - DESTINATION ${CMAKE_INSTALL_LIBDIR}/control-center-1/panels) - |