Index: /mppenc/branches/zorg/CMakeLists.txt
===================================================================
--- /mppenc/branches/zorg/CMakeLists.txt	(revision 93)
+++ /mppenc/branches/zorg/CMakeLists.txt	(revision 94)
@@ -1,2 +1,3 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.2)
 project(mppenc C)
 set(CMAKE_VERBOSE_MAKEFILE false)
Index: /mppenc/branches/zorg/INSTALL
===================================================================
--- /mppenc/branches/zorg/INSTALL	(revision 94)
+++ /mppenc/branches/zorg/INSTALL	(revision 94)
@@ -0,0 +1,14 @@
+Known prerequisites:
+- cmake >= 2.2
+
+Steps:
+'cmake .'
+	- Generate the build system
+'make'
+	- Compile mppenc binary
+'make install'
+	- Install freshly compiled binary on your system
+
+Notes:
+- If you need to install mppenc in another directory than the default one, call cmake with this command instead 'cmake -DCMAKE_INSTALL_PREFIX:=/myPath'
+- Current mppenc isn't robust enough to handle any cflag combinations so don't modify it needlessly. You can add "-march=yourcpu" to enhance speed a bit further. You MUST NOT remove "-fno-strict-aliasing" unless you enjoy segmentation faults and broken bitrates.
Index: /mppenc/branches/zorg/src/CMakeLists.txt
===================================================================
--- /mppenc/branches/zorg/src/CMakeLists.txt	(revision 93)
+++ /mppenc/branches/zorg/src/CMakeLists.txt	(revision 94)
@@ -2,2 +2,3 @@
 add_executable(mppenc analy_filter encode_sv7 huffsv7 profile stderr winmsg ans fastmath keyboard psy tags bitstream fft4g mppenc psy_tab tools cvd fft_routines pipeopen quant wave_in)
 target_link_libraries(mppenc m)
+install(TARGETS mppenc RUNTIME DESTINATION bin)
