29 lines
810 B
Python
29 lines
810 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",
|
|
]
|
|
|
|
gfxenv=env.Copy(CXXFLAGS = " `pkg-config --cflags gtk+-2.0 xxf86vm`", LINKFLAGS = " `pkg-config --libs gtk+-2.0 xxf86vm`")
|
|
|
|
gfxenv.SharedLibrary("../../../../Binary/linux/Plugins/zeroogl.so", files, LIBS=["videocommon", "common", "cairo", "GL", "GLEW", "CgGL", "Cg", "X11"])
|