File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
vendor/plugins/groonga-normalizer-mysql
tokudb/PerconaFT/cmake_modules Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ ENDIF()
2222IF (POLICY CMP0054)
2323 CMAKE_POLICY (SET CMP0054 NEW)
2424ENDIF ()
25+ IF (POLICY CMP0075)
26+ CMAKE_POLICY (SET CMP0075 NEW)
27+ ENDIF ()
2528
2629MESSAGE (STATUS "Running cmake version ${CMAKE_VERSION} " )
2730
Original file line number Diff line number Diff line change @@ -77,9 +77,8 @@ if(DEFINED GRN_EMBED)
7777else ()
7878 set (GRN_EMBED_DEFAULT OFF )
7979endif ()
80- option (GRN_EMBED
81- "Build as a static library to embed into an application"
82- ${GRN_EMBED_DEFAULT} )
80+ set (GRN_EMBED ${GRN_EMBED_DEFAULT} CACHE BOOL
81+ "Build as a static library to embed into an application" )
8382
8483set (BIN_DIR "bin" )
8584set (SBIN_DIR "sbin" )
Original file line number Diff line number Diff line change @@ -25,9 +25,8 @@ if(DEFINED GROONGA_NORMALIZER_MYSQL_EMBED)
2525else ()
2626 set (GROONGA_NORMALIZER_MYSQL_EMBED_DEFAULT OFF )
2727endif ()
28- option (GROONGA_NORMALIZER_MYSQL_EMBED
29- "Build as a static library to embed into an application"
30- ${GROONGA_NORMALIZER_MYSQL_EMBED_DEFAULT} )
28+ set (GROONGA_NORMALIZER_MYSQL_EMBED ${GROONGA_NORMALIZER_MYSQL_EMBED_DEFAULT}
29+ CACHE BOOL "Build as a static library to embed into an application" )
3130
3231file (READ "${CMAKE_CURRENT_SOURCE_DIR} /version" VERSION )
3332
Original file line number Diff line number Diff line change @@ -134,4 +134,4 @@ static __thread int tlsvar = 0;
134134int main(void) { return tlsvar; }" HAVE_GNU_TLS)
135135
136136## set TOKUDB_REVISION
137- set (CMAKE_TOKUDB_REVISION 0 CACHE INTEGER "Revision of tokudb." )
137+ set (CMAKE_TOKUDB_REVISION 0 CACHE INTERNAL "Revision of tokudb." )
You can’t perform that action at this time.
0 commit comments