30 lines
860 B
Python
30 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"])
|