diff options
| author | Glenn Smith <glenn@vector35.com> | 2020-10-14 23:39:54 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2020-10-14 23:39:54 -0400 |
| commit | 51f675ff93e6b6f00ee935dd2d2f1cb135f2df13 (patch) | |
| tree | 985626a0838f97b9b652c54f9fc81e3ca34e709c /examples | |
| parent | d7a69a1e6a9203d399117ff70e3eba8acbfe8d3f (diff) | |
Don't build uinotification plugin on headless build
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 764ba0c4..c8c502be 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -4,5 +4,7 @@ add_subdirectory(cmdline_disasm) add_subdirectory(llil_parser) add_subdirectory(mlil_parser) add_subdirectory(print_syscalls) -add_subdirectory(uinotification) +if(NOT HEADLESS) + add_subdirectory(uinotification) +endif() add_subdirectory(x86_extension) |
