This commit is contained in:
Ongy 2018-05-27 16:05:27 +00:00 committed by GitHub
commit aded0015df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
91 changed files with 593 additions and 462 deletions

View file

@ -287,7 +287,7 @@ int main(int argc, char **argv) {
char *socket_path = NULL;
char *cmdtype = NULL;
wlr_log_init(L_INFO, NULL);
sway_log_init(L_INFO, NULL);
static struct option long_options[] = {
{"help", no_argument, NULL, 'h'},

View file

@ -3,6 +3,6 @@ executable(
'main.c',
include_directories: [sway_inc],
dependencies: [jsonc, wlroots],
link_with: [lib_sway_common],
link_with: [lib_sway_common, lib_sway_ipc],
install: true
)