2018-08-22 08:17:49 +08:00
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
2019-08-25 04:43:57 +08:00
|
|
|
index 496712d..3df05c7 100644
|
2018-08-22 08:17:49 +08:00
|
|
|
--- a/CMakeLists.txt
|
|
|
|
+++ b/CMakeLists.txt
|
2019-08-25 04:43:57 +08:00
|
|
|
@@ -82,10 +82,12 @@ if (BUILD_SHARED_LIBS)
|
|
|
|
endif()
|
2018-08-22 08:17:49 +08:00
|
|
|
|
|
|
|
add_subdirectory(src)
|
2019-08-25 04:43:57 +08:00
|
|
|
-add_subdirectory(tests)
|
|
|
|
-add_subdirectory(doc)
|
|
|
|
-if (NOT GRAPHITE2_NFILEFACE)
|
|
|
|
- add_subdirectory(gr2fonttest)
|
2018-08-22 08:17:49 +08:00
|
|
|
+if(NOT DISABLE_TESTS)
|
2019-08-25 04:43:57 +08:00
|
|
|
+ add_subdirectory(tests)
|
|
|
|
+ add_subdirectory(doc)
|
|
|
|
+ if (NOT GRAPHITE2_NFILEFACE)
|
|
|
|
+ add_subdirectory(gr2fonttest)
|
|
|
|
+ endif()
|
|
|
|
endif()
|
2018-08-22 08:17:49 +08:00
|
|
|
|
|
|
|
set(version 3.0.1)
|
2019-08-25 04:43:57 +08:00
|
|
|
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
|
|
|
|
index 389cf5a..94b7f99 100644
|
|
|
|
--- a/src/CMakeLists.txt
|
|
|
|
+++ b/src/CMakeLists.txt
|
|
|
|
@@ -127,7 +127,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
|
|
|
|
endif ()
|
|
|
|
endif()
|
|
|
|
include(Graphite)
|
|
|
|
- if (BUILD_SHARED_LIBS)
|
|
|
|
+ if (NOT DISABLE_TESTS)
|
|
|
|
nolib_test(stdc++ $<TARGET_SONAME_FILE:graphite2>)
|
|
|
|
endif ()
|
|
|
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
|
|
|
@@ -141,7 +141,9 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
|
|
|
|
LINKER_LANGUAGE C)
|
|
|
|
target_link_libraries(graphite2 c)
|
|
|
|
include(Graphite)
|
|
|
|
- nolib_test(stdc++ $<TARGET_SONAME_FILE:graphite2>)
|
|
|
|
+ if (NOT DISABLE_TESTS)
|
|
|
|
+ nolib_test(stdc++ $<TARGET_SONAME_FILE:graphite2>)
|
|
|
|
+ endif ()
|
|
|
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
|
|
|
CREATE_LIBTOOL_FILE(graphite2 "/lib${LIB_SUFFIX}")
|
|
|
|
endif()
|