fix(CMakeLists.txt): option ==> set
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
fbb543fdcf
commit
099111db32
1 changed files with 3 additions and 1 deletions
|
@ -34,7 +34,9 @@ option(CONSERVE_MEMORY "CONSERVE_MEMORY" OFF)
|
|||
# Include MSYS2 required DLLs and binaries in the binary distribution package
|
||||
option(INCLUDE_MSYS2_DLLS "INCLUDE_MSYS2_DLLS" OFF)
|
||||
# Directory that include lean emacs mode dependecies
|
||||
option(EMACS_DEPENDENCIES "EMACS_DEPENDENCIES" "${CMAKE_SOURCE_DIR}/emacs/dependencies")
|
||||
set(EMACS_DEPENDENCIES "${CMAKE_SOURCE_DIR}/emacs/dependencies")
|
||||
|
||||
message(STATUS "Emacs dependecies directory " ${EMACS_DEPENDENCIES})
|
||||
|
||||
# emacs site-lisp dir
|
||||
set(EMACS_LISP_DIR "share/emacs/site-lisp/lean" CACHE STRING "emacs site-lisp dir")
|
||||
|
|
Loading…
Reference in a new issue