diff options
| author | Lukas Fürmetz <fuermetz@mailbox.org> | 2019-07-19 11:47:44 +0200 |
|---|---|---|
| committer | Lukas Fürmetz <fuermetz@mailbox.org> | 2019-07-19 11:47:44 +0200 |
| commit | c209a86e869bb3e91ad94541dbcfd3039ef1d2eb (patch) | |
| tree | 95b51159c10e364028360438d7fbdcd3fcfb97f6 | |
| parent | 120618b3fc6ca875ce7516add7183d75da340057 (diff) | |
Add workaround for cmake issue
Fixes #101
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f0f196..281c067 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,6 +46,9 @@ else() set(LIBVTERM_LIBRARY ${SOURCE_DIR}/.libs/libvterm.a) add_dependencies(vterm-module libvterm) + + # Workaround for https://gitlab.kitware.com/cmake/cmake/issues/15052 + file(MAKE_DIRECTORY ${LIBVTERM_INCLUDE_DIR}) endif() add_library(vterm STATIC IMPORTED) |
