diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-06-18 10:20:18 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-06-18 10:20:18 +0200 |
| commit | 7b5fe4b9d1edf5d3eecc71bb0bf50ac0f4487f7e (patch) | |
| tree | cd3856476abae7b5d24848e420ba04c0ecf8f12e /src/CMakeLists.txt | |
| parent | bbb4efde187ec2a9546f2b9ff54e0db7d275fc5d (diff) | |
| download | slack-timedate-7b5fe4b9d1edf5d3eecc71bb0bf50ac0f4487f7e.tar.gz | |
Separate service implementation from the main
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 469379a..c626a41 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,8 @@ find_package(PkgConfig) pkg_check_modules(GDBUS REQUIRED gio-2.0 dbus-1 glibmm-2.4 giomm-2.4) -add_executable(slack-timedate - slack-timedate.cpp slack-timedate.h +add_executable(slack-timedate main.cpp + timedate.cpp timedate.h ) target_include_directories(slack-timedate PRIVATE ${GDBUS_INCLUDE_DIRS}) target_link_libraries(slack-timedate ${GDBUS_LIBRARIES}) |
