diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-27 20:25:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-27 20:25:58 -0600 |
commit | b939a1459ef0e4eec6d8dd111baf8e022d1b46a0 (patch) | |
tree | 4224eaba897295236c492b2fbf204a0f21ce38db /src/CMakeLists.txt | |
parent | e9402471a2f87071f972ec8a19be33716d5ada5d (diff) | |
download | abakus-b939a1459ef0e4eec6d8dd111baf8e022d1b46a0.tar.gz abakus-b939a1459ef0e4eec6d8dd111baf8e022d1b46a0.zip |
Initial conversion to standard CMake system
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..61f671b --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,49 @@ +################################################# +# +# (C) 2011 Timothy Pearson +# kb9vqf (AT) pearsoncomputing.net +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}/src + ${CMAKE_SOURCE_DIR}/src +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES abakus.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +install( FILES abakusui.rc DESTINATION ${DATA_INSTALL_DIR} ) + +##### abakus (executable) ####################### + +if( HAVE_MPFR ) + MPFR_SOURCES="hmath.cpp number.c" + MPFR_LIBRARIES="mpfr gmp" +endif( HAVE_MPFR ) + +tde_add_executable( abakus AUTOMOC + SOURCES abakus.cpp abakuslistview.cpp + dragsupport.cpp editor.cpp + evaluator.cpp function.cpp + lexer_lex.cpp mainwindow.cpp + node.cpp numerictypes.cpp + parser_yacc.cpp result.cpp + resultlistview.cpp resultlistviewtext.cpp + rpnmuncher.cpp valuemanager.cpp dcopIface.skel + ${MPFR_SOURCES} + LINK kio-shared tdecore-shared tdeprint-shared tdeui-shared DCOP-shared ${MPFR_LIBRARIES} + DESTINATION ${BIN_INSTALL_DIR} +) |