diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-08-30 00:20:59 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-08-30 00:22:22 +0200 |
commit | f155275d216d3c8befe55ef24916a69d976611bc (patch) | |
tree | 12dabded6142c07795114d1870076e1fd4422672 | |
parent | a6fe2c4c6737940ec1b185783d7b81eb93d5fef5 (diff) | |
download | desktop-tools-f155275d216d3c8befe55ef24916a69d976611bc.tar.gz desktop-tools-f155275d216d3c8befe55ef24916a69d976611bc.tar.xz desktop-tools-f155275d216d3c8befe55ef24916a69d976611bc.zip |
iexec: fix linkage
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ce01ee..6587c26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,7 @@ add_executable (priod priod.c) target_link_libraries (priod ${project_libraries}) add_executable (iexec iexec.c) -target_link_libraries (iexec ${project_libraries}) +target_link_libraries (iexec) if (WITH_GDM) include_directories (${gdm_INCLUDE_DIRS}) |