From 22eaaf46994712a7ea19be99d49c5ceb889470bd Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Thu, 25 Feb 2016 06:23:55 +0300 Subject: Initial cmake conversion (cherry picked from commit c70db62d3671e524d23ac974d296eb218159b000) --- kmines/CMakeLists.txt | 45 +++++++++++++++++++++++++ kmines/bitmaps/CMakeLists.txt | 1 + kmines/data/CMakeLists.txt | 14 ++++++++ kmines/solver/CMakeLists.txt | 77 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 137 insertions(+) create mode 100644 kmines/CMakeLists.txt create mode 100644 kmines/bitmaps/CMakeLists.txt create mode 100644 kmines/data/CMakeLists.txt create mode 100644 kmines/solver/CMakeLists.txt (limited to 'kmines') diff --git a/kmines/CMakeLists.txt b/kmines/CMakeLists.txt new file mode 100644 index 00000000..450004ce --- /dev/null +++ b/kmines/CMakeLists.txt @@ -0,0 +1,45 @@ +################################################# +# +# (C) 2016 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( data ) +add_subdirectory( bitmaps ) +add_subdirectory( solver ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libtdegames + ${CMAKE_SOURCE_DIR}/libtdegames/highscore + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kmines (executable) ####################### + +tde_add_executable( kmines AUTOMOC + SOURCES kzoommainwindow.cpp defines.cpp highscores.cpp settings.kcfgc + dialogs.cpp frame.cpp field.cpp status.cpp main.cpp + LINK tdecore-shared tdeui-shared tdeio-shared solver-static tdegames-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( FILES kminesui.rc + DESTINATION ${DATA_INSTALL_DIR}/kmines +) diff --git a/kmines/bitmaps/CMakeLists.txt b/kmines/bitmaps/CMakeLists.txt new file mode 100644 index 00000000..89a876b0 --- /dev/null +++ b/kmines/bitmaps/CMakeLists.txt @@ -0,0 +1 @@ +# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer diff --git a/kmines/data/CMakeLists.txt b/kmines/data/CMakeLists.txt new file mode 100644 index 00000000..45e39b94 --- /dev/null +++ b/kmines/data/CMakeLists.txt @@ -0,0 +1,14 @@ +# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer + +tde_install_icons( kmines ) + + +##### other data ################################ + +install( FILES kmines.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + +install( FILES eventsrc + DESTINATION ${DATA_INSTALL_DIR}/kmines +) diff --git a/kmines/solver/CMakeLists.txt b/kmines/solver/CMakeLists.txt new file mode 100644 index 00000000..0936261b --- /dev/null +++ b/kmines/solver/CMakeLists.txt @@ -0,0 +1,77 @@ +################################################# +# +# (C) 2016 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kmines/generic + ${CMAKE_SOURCE_DIR}/kmines + ${CMAKE_SOURCE_DIR}/libtdegames + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### solver (static) ########################### + +tde_add_library( solver STATIC_PIC AUTOMOC + SOURCES bfield.cpp solver.cpp advFastRules.cpp adviseFast.cpp adviseFull.cpp +) + +# FIXME: add test targets to cmake +# +# ##### test (test) ############################### +# +# tde_add_executable( test AUTOMOC +# SOURCES test.cpp +# LINK solver-shared tdecore-shared +# ) +# +# add_test( NAME test-test +# COMMAND test) +# +# +# ##### testFast (test) ########################### +# +# tde_add_executable( testFast AUTOMOC +# SOURCES testFast.cpp +# LINK solver-shared tdecore-shared +# ) +# +# add_test( NAME testFast-test +# COMMAND testFast) +# +# +# ##### testSolve (test) ########################## +# +# tde_add_executable( testSolve AUTOMOC +# SOURCES testSolve.cpp +# LINK solver-shared tdecore-shared tdeui-shared +# ) +# +# add_test( NAME testSolve-test +# COMMAND testSolve) +# +# +# ##### testRate (test) ########################### +# +# tde_add_executable( testRate AUTOMOC +# SOURCES testRate.cpp +# LINK solver-shared tdecore-shared tdeui-shared +# ) +# +# add_test( NAME testRate-test +# COMMAND testRate) -- cgit v1.2.1