mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
- This version should compile on linux. - The about and config dialogs are disabled (win32 should be replaced by wxWidgets) - This version is untested, so if you want to try it out, use a premade nJoy.ini from a windows install. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@70 8ced0084-cf51-0410-be5f-012b33b47a6e
29 lines
860 B
Python
29 lines
860 B
Python
Import('env')
|
|
|
|
files = ["BPStructs.cpp",
|
|
"DataReader.cpp",
|
|
"Fifo.cpp",
|
|
"Globals.cpp",
|
|
"GLInit.cpp",
|
|
"main.cpp",
|
|
"memcpy_amd.cpp",
|
|
"OpcodeDecoding.cpp",
|
|
# "OpcodeReaders.cpp", # outdated
|
|
"PixelShader.cpp",
|
|
"PixelShaderManager.cpp",
|
|
"rasterfont.cpp",
|
|
"Render.cpp",
|
|
# "TextureDecoder.cpp",
|
|
"TextureMngr.cpp",
|
|
"VertexLoader.cpp",
|
|
"VertexLoader_Normal.cpp",
|
|
"VertexShader.cpp",
|
|
"VertexShaderManager.cpp",
|
|
# "Linux/Conf.cpp",
|
|
# "Linux/Linux.cpp",
|
|
"GUI/ConfigDlg.cpp",
|
|
]
|
|
|
|
gfxenv=env.Copy(CXXFLAGS = " `wx-config --cppflags` `pkg-config --cflags xxf86vm` ", LINKFLAGS = "`wx-config --libs` `pkg-config --libs xxf86vm` ")
|
|
|
|
gfxenv.SharedLibrary("../../../../Binary/linux/Plugins/zeroogl.so", files, LIBS=["videocommon", "common", "cairo", "GL", "GLEW", "CgGL", "Cg", "X11"])
|