blob: 476db036730ff0a03310ba041a607193720a3092 (
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
|
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -393,34 +393,7 @@
endif ()
-#------------------------------------------------------------------------
-# Static Library
-# The static library always builds.
-#------------------------------------------------------------------------
-set(name tidy-static)
-add_library ( ${name} STATIC ${CFILES} ${HFILES} ${LIBHFILES} )
-if (WIN32)
- set_target_properties( ${name} PROPERTIES
- OUTPUT_NAME ${LIB_NAME}_static )
-else ()
- set_target_properties( ${name} PROPERTIES
- OUTPUT_NAME ${LIB_NAME} )
-
-endif ()
-if (NOT TIDY_CONSOLE_SHARED) # user wants default static linkage
- list ( APPEND add_LIBS ${name} )
-endif ()
-install(TARGETS ${name}
- RUNTIME DESTINATION ${BIN_INSTALL_DIR}
- ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
- LIBRARY DESTINATION ${LIB_INSTALL_DIR}
- )
install( FILES ${HFILES} DESTINATION ${INCLUDE_INSTALL_DIR} )
-if(MSVC)
- # install(FILES $<TARGET_PDB_FILE:${name}> DESTINATION lib OPTIONAL)
- INSTALL(FILES ${PROJECT_BINARY_DIR}/${name}.dir/Debug/${name}.pdb
- DESTINATION lib CONFIGURATIONS Debug )
-endif()
#------------------------------------------------------------------------
# Dynamic Library
|