mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	library for color support detection. This still will use a curses library if that is all we have available on the system. This change tries to use a smaller subset of the curses library, specifically the subset that is on some systems split off into a separate library. For example, if you install ncurses configured --with-tinfo, a 'libtinfo' is install that provides just the terminfo querying functionality. That library is now used instead of curses when it is available. This happens to fix a build error on systems with that library because when we tried to link ncurses into the binary, we didn't pull tinfo in as well. =] It should also provide an easy path for supporting the NetBSD libterminfo library, but as I don't have access to a NetBSD system I'm leaving adding that support to those folks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188160 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # This file provides information and services to the final user.
 | |
| 
 | |
| set(LLVM_VERSION_MAJOR @LLVM_VERSION_MAJOR@)
 | |
| set(LLVM_VERSION_MINOR @LLVM_VERSION_MINOR@)
 | |
| set(LLVM_PACKAGE_VERSION @PACKAGE_VERSION@)
 | |
| 
 | |
| set(LLVM_COMMON_DEPENDS @LLVM_COMMON_DEPENDS@)
 | |
| 
 | |
| set_property( GLOBAL PROPERTY LLVM_LIBS "@llvm_libs@")
 | |
| 
 | |
| set(LLVM_ALL_TARGETS @LLVM_ALL_TARGETS@)
 | |
| 
 | |
| set(LLVM_TARGETS_TO_BUILD @LLVM_TARGETS_TO_BUILD@)
 | |
| 
 | |
| set(LLVM_TARGETS_WITH_JIT @LLVM_TARGETS_WITH_JIT@)
 | |
| 
 | |
| @all_llvm_lib_deps@
 | |
| 
 | |
| set(TARGET_TRIPLE "@TARGET_TRIPLE@")
 | |
| 
 | |
| set(LLVM_TOOLS_BINARY_DIR @LLVM_TOOLS_BINARY_DIR@)
 | |
| 
 | |
| set(LLVM_ENABLE_TERMINFO @LLVM_ENABLE_TERMINFO@)
 | |
| 
 | |
| set(LLVM_ENABLE_THREADS @LLVM_ENABLE_THREADS@)
 | |
| 
 | |
| set(LLVM_ENABLE_ZLIB @LLVM_ENABLE_ZLIB@)
 | |
| 
 | |
| set(LLVM_NATIVE_ARCH @LLVM_NATIVE_ARCH@)
 | |
| 
 | |
| set(LLVM_ENABLE_PIC @LLVM_ENABLE_PIC@)
 | |
| 
 | |
| set(HAVE_TERMINFO @HAVE_TERMINFO@)
 | |
| set(TERMINFO_LIBS @TERMINFO_LIBS@)
 | |
| set(HAVE_LIBDL @HAVE_LIBDL@)
 | |
| set(HAVE_LIBPTHREAD @HAVE_LIBPTHREAD@)
 | |
| set(HAVE_LIBZ @HAVE_LIBZ@)
 | |
| set(LLVM_ON_UNIX @LLVM_ON_UNIX@)
 | |
| set(LLVM_ON_WIN32 @LLVM_ON_WIN32@)
 | |
| 
 | |
| set(LLVM_INSTALL_PREFIX "@LLVM_INSTALL_PREFIX@")
 | |
| set(LLVM_INCLUDE_DIRS ${LLVM_INSTALL_PREFIX}/include)
 | |
| set(LLVM_LIBRARY_DIRS ${LLVM_INSTALL_PREFIX}/lib)
 | |
| set(LLVM_DEFINITIONS "-D__STDC_LIMIT_MACROS" "-D__STDC_CONSTANT_MACROS")
 | |
| 
 | |
| # We try to include using the current setting of CMAKE_MODULE_PATH,
 | |
| # which suppossedly was filled by the user with the directory where
 | |
| # this file was installed:
 | |
| include( LLVM-Config OPTIONAL RESULT_VARIABLE LLVMCONFIG_INCLUDED )
 | |
| 
 | |
| # If failed, we assume that this is an un-installed build:
 | |
| if( NOT LLVMCONFIG_INCLUDED )
 | |
|   set(CMAKE_MODULE_PATH
 | |
|     ${CMAKE_MODULE_PATH}
 | |
|     "@LLVM_SOURCE_DIR@/cmake/modules")
 | |
|   include( LLVM-Config )
 | |
| endif()
 | |
| 
 |