blob: 67c953714ae6f2966472ad326005ec85e3a86479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dddbaf6..ee57b7b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -133,16 +133,28 @@ find_package(CMath REQUIRED)
# Release support
include(Release)
+if(MSVC)
+ add_definitions(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS)
+ add_compile_options(/wd4996)
+endif()
# Process subdirectories
add_subdirectory(port)
add_subdirectory(libtiff)
+if(BUILD_TOOLS)
add_subdirectory(tools)
+endif()
+if(BUILD_TESTS)
add_subdirectory(test)
+endif()
+if(BUILD_CONTRIB)
add_subdirectory(contrib)
add_subdirectory(build)
+endif()
+if(BUILD_DOCS)
add_subdirectory(man)
add_subdirectory(html)
+endif()
message(STATUS "")
diff --git a/libtiff/CMakeLists.txt b/libtiff/CMakeLists.txt
index 90105b2..db5f140 100755
--- a/libtiff/CMakeLists.txt
+++ b/libtiff/CMakeLists.txt
@@ -161,7 +161,7 @@ if(CXX_SUPPORT)
set(tiffxx_HEADERS
tiffio.hxx)
- add_library(tiffxx)
+ add_library(tiffxx STATIC)
target_sources(tiffxx PRIVATE
${tiffxx_HEADERS}
tif_stream.cxx)
@@ -189,6 +189,7 @@ if(CXX_SUPPORT)
endif()
+if(NOT CMAKE_CROSSCOMPILING)
add_executable(mkg3states)
target_sources(mkg3states PRIVATE mkg3states.c tif_fax3.h)
target_link_libraries(mkg3states tiff port)
@@ -198,3 +199,4 @@ add_custom_target(faxtable
COMMAND ${CMAKE_COMMAND} -E rm "tif_fax3sm.c"
COMMAND mkg3states -b -c const "tif_fax3sm.c"
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
+endif()
|