aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Fürmetz <fuermetz@mailbox.org>2018-11-16 23:43:56 +0100
committerLukas Fürmetz <fuermetz@mailbox.org>2018-11-16 23:43:56 +0100
commit8be9316156be75a685c0636258b2fec2daaf5ab5 (patch)
tree4b78782658bda8915af6c2a9927bce2a114e8b60
parent38eaf2867853199af203433fdba3f4df01fd2ee5 (diff)
Fix run command
-rw-r--r--CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5fb973b..3a170a8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -34,7 +34,6 @@ target_link_libraries(vterm-module ${LIBVTERM_LIBRARY})
# Custom run command for testing
add_custom_target(run
- COMMAND emacs -Q -L ${CMAKE_SOURCE_DIR} --eval "\\(require \\'vterm\\)" --eval "\\(vterm\\)"
+ COMMAND emacs -Q -L ${CMAKE_SOURCE_DIR} -L ${CMAKE_BINARY_DIR} --eval "\\(require \\'vterm\\)" --eval "\\(vterm\\)"
DEPENDS vterm-module
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)