Add an experimental CMake build system as a possible replacement for SCons. Only...
commitfedba6c4f83b1d061b05da549cfc7c2364119373
authorNeoBrainX <NeoBrainX@8ced0084-cf51-0410-be5f-012b33b47a6e>
Mon, 1 Nov 2010 15:47:02 +0000 (1 15:47 +0000)
committerNeoBrainX <NeoBrainX@8ced0084-cf51-0410-be5f-012b33b47a6e>
Mon, 1 Nov 2010 15:47:02 +0000 (1 15:47 +0000)
tree890bc8ce9aaa687b6698cf1bd13af5c7fa2c6dc3
parentc9f3167a578e0969055c443af14ebbcea9c75ef7
Add an experimental CMake build system as a possible replacement for SCons. Only tested on Linux, should work on OS X and Windows in the future as well though.

Some notes about this:
- config.h doesn't get written yet, so you'll have to use one generated by SCons
- dependency checking isn't really implemented, yet. Just some basic checks for OpenGL or ALSA, we need something more sophisticated though.
- the OpenGL plugin fails to load for some reason which I can't debug right now due to the libc debuginfo package version in openSUSE not matching the runtime packages
- there's even some support for generating install packages (rpm/deb/.. packages, NSIS installer, etc). It doesn't work properly right now though, since some paths seem to be hardcoded into Dolphin's source
- probably lots of other stuff I forgot... Just take a look at all the TODOs in the CMakeLists.txt files for more information ;P

Additionally, I added various files to the svn:ignore list.

tl;dr: Unless you are a dev or you're building binary packages, this commit shouldn't bother you :P

git-svn-id: http://dolphin-emu.googlecode.com/svn/trunk@6326 8ced0084-cf51-0410-be5f-012b33b47a6e
24 files changed:
CMakeLists.txt [new file with mode: 0644]
Externals/Bochs_disasm/CMakeLists.txt [new file with mode: 0644]
Externals/LZO/CMakeLists.txt [new file with mode: 0644]
Externals/Lua/CMakeLists.txt [new file with mode: 0644]
Externals/SFML/CMakeLists.txt [new file with mode: 0644]
Externals/SOIL/CMakeLists.txt [new file with mode: 0644]
Externals/WiiUse/CMakeLists.txt [new file with mode: 0644]
Source/CMakeLists.txt [new file with mode: 0644]
Source/Core/AudioCommon/CMakeLists.txt [new file with mode: 0644]
Source/Core/CMakeLists.txt [new file with mode: 0644]
Source/Core/Common/CMakeLists.txt [new file with mode: 0644]
Source/Core/Core/CMakeLists.txt [new file with mode: 0644]
Source/Core/DSPCore/CMakeLists.txt [new file with mode: 0644]
Source/Core/DebuggerUICommon/CMakeLists.txt [new file with mode: 0644]
Source/Core/DebuggerWX/CMakeLists.txt [new file with mode: 0644]
Source/Core/DiscIO/CMakeLists.txt [new file with mode: 0644]
Source/Core/DolphinWX/CMakeLists.txt [new file with mode: 0644]
Source/Core/InputCommon/CMakeLists.txt [new file with mode: 0644]
Source/Core/InputUICommon/CMakeLists.txt [new file with mode: 0644]
Source/Core/VideoCommon/CMakeLists.txt [new file with mode: 0644]
Source/Plugins/CMakeLists.txt [new file with mode: 0644]
Source/Plugins/Plugin_DSP_HLE/CMakeLists.txt [new file with mode: 0644]
Source/Plugins/Plugin_DSP_LLE/CMakeLists.txt [new file with mode: 0644]
Source/Plugins/Plugin_VideoOGL/CMakeLists.txt [new file with mode: 0644]