add-cmake.diff
changeset 92 66f7e2aa040c
parent 91 51d326d5cb92
child 93 d59df8a9413d
equal deleted inserted replaced
91:51d326d5cb92 92:66f7e2aa040c
     1 # HG changeset patch
     1 # HG changeset patch
     2 # Parent 386f3b8646a61ba6af61609ff67f2da2cc70251e
     2 # Parent 386f3b8646a61ba6af61609ff67f2da2cc70251e
     3 # Parent  3ac5a22405458457d067b59e4e31cb1cda415f13
     3 # Parent  04c97ffb0b5a75641bb2e6c1fc762f0383bc265e
     4 Add possibility to build with CMake
     4 Add possibility to build with CMake
     5 
     5 
     6 diff --git a/.hgignore b/.hgignore
     6 diff --git a/.hgignore b/.hgignore
     7 --- a/.hgignore
     7 --- a/.hgignore
     8 +++ b/.hgignore
     8 +++ b/.hgignore
    33 +# You should have received a copy of the GNU General Public License
    33 +# You should have received a copy of the GNU General Public License
    34 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
    34 +# along with this program.  If not, see <http://www.gnu.org/licenses/>.
    35 +
    35 +
    36 +cmake_minimum_required ( VERSION 2.6 )
    36 +cmake_minimum_required ( VERSION 2.6 )
    37 +project ( mcabber C )
    37 +project ( mcabber C )
    38 +set ( PROJECT_VERSION "1.0.3-dev" )
    38 +set ( PROJECT_VERSION "1.0.5-dev" )
    39 +
    39 +
    40 +## User settable options
    40 +## User settable options
    41 +option ( ENABLE_DEBUG    "Enable debugging output"                       OFF ) # XXX is it really used?
    41 +option ( ENABLE_DEBUG    "Enable debugging output"                       OFF ) # XXX is it really used?
    42 +option ( USE_SIGWINCH    "Compile with SIGWINCH handler"                 OFF )
    42 +option ( USE_SIGWINCH    "Compile with SIGWINCH handler"                 OFF )
    43 +option ( MODULES_ENABLE  "Enable dynamic module loading"                 ON  )
    43 +option ( MODULES_ENABLE  "Enable dynamic module loading"                 ON  )