Changeset 532 for trunk/osg-config.in
- Timestamp:
- 02/12/07 03:15:52 (2 years ago)
- Files:
-
- trunk/osg-config.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/osg-config.in
r495 r532 80 80 81 81 (options, pos_args) = parser.parse_args() 82 82 83 83 # Process simple single options 84 84 if options.prefix: … … 88 88 print version 89 89 return 90 90 91 91 # Try to find libname 92 92 # - Try given name and name with OSG or OSGWindow prefix … … 101 101 break 102 102 103 103 104 104 # Make sure we have libraries 105 105 if len(libraries) == 0: … … 113 113 options.lib_ext = "" 114 114 options.libpath_prefix = "" 115 115 116 116 # Create a configuration adapter for the required library 117 117 default_lib_settings = LibraryInfo() 118 118 default_lib_settings.libpath.insert(0, inst_lib_path) 119 119 default_lib_settings.cpppath.insert(0, inst_inc_path) 120 121 lib_suffix = "" 122 123 if options.dbg: 124 lib_suffix = "_d" 125 126 120 127 config_info = ConfigInfoAdapter(libraries, lib_map, default_lib_settings, 121 options.inc_prefix, options.lib_prefix, options.libpath_prefix,122 "", options.lib_ext)123 128 options.inc_prefix, options.lib_prefix, 129 options.libpath_prefix, lib_suffix, options.lib_ext) 130 124 131 if options.cflags: 125 132 print config_info.getIncPathStr()
