mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-11-03 15:26:12 -08:00 
			
		
		
		
	Fix for convert_cpp_enum_to_c for gen_c_library
It wasn't generating correct typedefs for when underlying type was used over the enum name.
This commit is contained in:
		@@ -344,15 +344,17 @@ if ( $vendor -match "clang" )
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		# Check if output is a static library
 | 
			
		||||
		# if ( $binary -match '\.lib$' )
 | 
			
		||||
		# {
 | 
			
		||||
			# $lib_args  = @()
 | 
			
		||||
		if ( $binary -match '\.lib$' )
 | 
			
		||||
		{
 | 
			
		||||
			$lib_args  = @()
 | 
			
		||||
			# $lib_args += $flag_nologo
 | 
			
		||||
			# $lib_args += $flag_link_win_machine_64
 | 
			
		||||
			# $lib_args += ( $flag_link_win_path_output + $binary )
 | 
			
		||||
			# $lib_args += $object
 | 
			
		||||
			# return run-archiver $archiver $binary $lib_args
 | 
			
		||||
		# }
 | 
			
		||||
			# $lib_args += '--format=windows'
 | 
			
		||||
			# $lib_args += '-X64'
 | 
			
		||||
			$lib_args += $object
 | 
			
		||||
			return run-archiver $archiver $binary $lib_args
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		$linker_args += $object
 | 
			
		||||
		return run-linker $linker $binary $linker_args
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user