mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 16:26:03 +03:00 
			
		
		
		
	 706c8903a1
			
		
	
	
		706c8903a1
		
			
		
	
	
	
	
		
			
			* chore(build): add vendored SDL 3.0.0 library * chore(build): add vendored glew-cmake-2.2.0 library * feat(console): in the presence of -opengl launch flag, change GxApi to OpenGl * feat(gx): add uncompleted CGxDeviceGLSDL targeting Windows and Linux * chore(build): change SDL3 linkage from shared (bad) to to static (good)
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <h2>Building GLEW</h2>
 | |
| 
 | |
| <h3>Windows</h3>
 | |
| 
 | |
| <p>A MS Visual Studio project is provided in the <tt>build/vc6</tt> directory.</p>
 | |
| <p>Pre-built shared and static libraries are also available for <a href="index.html">download</a>.</p>
 | |
| 
 | |
| <h3>Makefile</h3>
 | |
| 
 | |
| <p>For platforms other than MS Windows, the provided <tt>Makefile</tt> is used.</p> 
 | |
| 
 | |
| <h4>Command-line variables</h4>
 | |
| 
 | |
| <table border=0 cellpadding=0 cellspacing=10>
 | |
| <tr><td valign=top><tt>SYSTEM</tt></td><td valign=top>auto</td>
 | |
| <td align=left>Target system to build: darwin, linux, solaris, etc.<br/>For a full list of supported targets: <tt>ls config/Makefile.*</tt><br/>
 | |
| <a href="http://git.savannah.gnu.org/gitweb/?p=config.git;a=tree">config.guess</a> is used to auto detect, as necessary.</td></tr>
 | |
| <tr><td valign=top><tt>GLEW_DEST</tt></td><td valign=top><tt>/usr</tt></td>
 | |
| <td align=left>Base directory for installation.</td></tr>
 | |
| </table>
 | |
| 
 | |
| <h4>Make targets</h4>
 | |
| 
 | |
| <table border=0 cellpadding=0 cellspacing=10>
 | |
| <tr><td valign=top><tt>all</tt></td><td>Build everything.</td><tr>
 | |
| <tr><td valign=top><tt>glew.lib</tt></td><td>Build static and dynamic GLEW libraries.</td><tr>
 | |
| <tr><td valign=top><tt>glew.lib.mx</tt></td><td>Build static and dynamic GLEWmx libraries.</td><tr>
 | |
| <tr><td valign=top><tt>glew.bin</tt></td><td>Build <tt>glewinfo</tt> and <tt>visualinfo</tt> utilities.</td><tr>
 | |
| <tr><td valign=top><tt>clean</tt></td><td>Delete temporary and built files.</td><tr>
 | |
| <tr><td valign=top><tt>install.all</tt></td><td>Install everything.</td><tr>
 | |
| <tr><td valign=top><tt>install</tt></td><td>Install GLEW libraries.</td><tr>
 | |
| <tr><td valign=top><tt>install.mx</tt></td><td>Install GLEWmx libraries.</td><tr>
 | |
| <tr><td valign=top><tt>install.bin</tt></td><td>Install <tt>glewinfo</tt> and <tt>visualinfo</tt> utilities.</td><tr>
 | |
| <tr><td valign=top><tt>uninstall</tt></td><td>Delete installed files.</td><tr>
 | |
| </table>
 | |
| 
 | |
| <h4>Requirements</h4>
 | |
| 
 | |
| <ul>
 | |
| <li>GNU make</li>
 | |
| <li>perl</li>
 | |
| <li>wget</li>
 | |
| <li>GNU sed</li>
 | |
| <li>gcc compiler</li>
 | |
| <li>git</li>
 | |
| </ul>
 | |
| 
 | |
| Ubuntu: <pre>sudo apt-get install libXmu-dev libXi-dev libgl-dev dos2unix git wget</pre>
 | |
| Fedora: <pre>sudo yum install libXmu-devel libXi-devel libGL-devel dos2unix git wget</pre>
 |