Skip to content

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

‎CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ SET (BINDINGS_GLOBAL_INSTALL FALSE CACHE BOOL "Install bindings to global python
4040
# Compile flag. Make it posible to turn it off.
4141
SET (PEDANTIC TRUE CACHE BOOL "Determines if we should compile with -Wall -Werror.")
4242

43+
# hide this variable because building of python bindings might fail
44+
# if set to other directory than expected
45+
MARK_AS_ADVANCED(LIBRARY_OUTPUT_PATH)
46+
4347
#############################################################
4448
# check if lexer and parser are not missing
4549
# http://www.mail-archive.com/cmake@cmake.org/msg02861.html

‎cmake/FindGRASS.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ MACRO (CHECK_GRASS G_PREFIX)
2323

2424
ENDFOREACH (LIB)
2525

26+
# LIB_PATH is only temporary variable, so hide it (is it possible to delete a variable?)
27+
MARK_AS_ADVANCED(LIB_PATH)
28+
2629
IF (GRASS_INCLUDE_DIR AND GRASS_LIBRARIES)
2730
SET (GRASS_FOUND TRUE)
2831
SET (GRASS_PREFIX ${G_PREFIX})

0 commit comments

Comments
 (0)
Please sign in to comment.