summaryrefslogtreecommitdiff
path: root/unity-shared/CMakeLists.txt
diff options
Diffstat (limited to 'unity-shared/CMakeLists.txt')
-rw-r--r--unity-shared/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/unity-shared/CMakeLists.txt b/unity-shared/CMakeLists.txt
index 355e5bfe0..fa1e911ae 100644
--- a/unity-shared/CMakeLists.txt
+++ b/unity-shared/CMakeLists.txt
@@ -27,6 +27,7 @@ include_directories (. .. ../services ../UnityCore ${UNITY_SRC} ${CMAKE_BINARY_D
#
set (UNITY_SHARED_SOURCES
AbstractSeparator.cpp
+ ApplicationManager.cpp
Animator.cpp
BGHash.cpp
CoverArt.cpp
@@ -74,6 +75,7 @@ set (UNITY_SHARED_SOURCES
if(ENABLE_X_SUPPORT)
set (UNITY_SHARED_SOURCES
+ BamfApplicationManager.cpp
XKeyboardUtil.cpp
XWindowManager.cpp
${UNITY_SHARED_SOURCES}
@@ -112,4 +114,7 @@ add_library (unity-shared-standalone STATIC ${UNITY_SHARED_STANDALONE_SOURCES})
target_link_libraries (unity-shared-standalone ${LIBS})
add_dependencies (unity-shared-standalone unity-shared)
+add_executable (app-manager StandaloneAppManager.cpp)
+add_dependencies (app-manager unity-shared)
+target_link_libraries (app-manager unity-shared unity-shared-standalone)