# HG changeset patch
# User Alpar Juttner <alpar@cs.elte.hu>
# Date 1235211767 0
# Node ID c8bb09eec8d63c364216e3dc92b2a34886e2b5e5
# Parent 2878204c8443b6e97523479303a7d5586cbffc03
CMAKE builds the tools/ dir, too
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
a
|
b
|
|
| 39 | 39 | |
| 40 | 40 | ADD_SUBDIRECTORY(lemon) |
| 41 | 41 | ADD_SUBDIRECTORY(demo) |
| | 42 | ADD_SUBDIRECTORY(tools) |
| 42 | 43 | ADD_SUBDIRECTORY(doc) |
| 43 | 44 | ADD_SUBDIRECTORY(test) |
| 44 | 45 | |
| … |
… |
|
| 56 | 57 | SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY |
| 57 | 58 | "${PROJECT_NAME} ${PROJECT_VERSION}") |
| 58 | 59 | |
| 59 | | SET(CPACK_COMPONENTS_ALL headers library html_documentation) |
| | 60 | SET(CPACK_COMPONENTS_ALL headers library html_documentation bin) |
| 60 | 61 | |
| 61 | 62 | SET(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C++ headers") |
| 62 | 63 | SET(CPACK_COMPONENT_LIBRARY_DISPLAY_NAME "Dynamic-link library") |
| | 64 | SET(CPACK_COMPONENT_BIN_DISPLAY_NAME "Command line utilities") |
| 63 | 65 | SET(CPACK_COMPONENT_HTML_DOCUMENTATION_DISPLAY_NAME "HTML documentation") |
| 64 | 66 | |
| 65 | 67 | SET(CPACK_COMPONENT_HEADERS_DESCRIPTION |
| 66 | 68 | "C++ header files") |
| 67 | 69 | SET(CPACK_COMPONENT_LIBRARY_DESCRIPTION |
| 68 | 70 | "DLL and import library") |
| | 71 | SET(CPACK_COMPONENT_BIN_DESCRIPTION |
| | 72 | "Command line utilities") |
| 69 | 73 | SET(CPACK_COMPONENT_HTML_DOCUMENTATION_DESCRIPTION |
| 70 | 74 | "Doxygen generated documentation") |
| 71 | 75 | |
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
new file mode 100644
|
-
|
+
|
|
| | 1 | INCLUDE_DIRECTORIES( |
| | 2 | ${CMAKE_SOURCE_DIR} |
| | 3 | ${CMAKE_BINARY_DIR} |
| | 4 | ) |
| | 5 | |
| | 6 | LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon) |
| | 7 | |
| | 8 | ADD_EXECUTABLE(dimacs-to-lgf dimacs-to-lgf.cc) |
| | 9 | TARGET_LINK_LIBRARIES(dimacs-to-lgf lemon) |
| | 10 | |
| | 11 | ADD_EXECUTABLE(dimacs-solver dimacs-solver.cc) |
| | 12 | TARGET_LINK_LIBRARIES(dimacs-solver lemon) |
| | 13 | |
| | 14 | INSTALL( |
| | 15 | TARGETS dimacs-to-lgf dimacs-solver |
| | 16 | RUNTIME DESTINATION bin |
| | 17 | COMPONENT bin |
| | 18 | ) |
| | 19 | |
| | 20 | IF(NOT WIN32) |
| | 21 | INSTALL( |
| | 22 | FILES ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh |
| | 23 | RUNTIME DESTINATION bin |
| | 24 | COMPONENT bin) |
| | 25 | ENDIF(NOT WIN32) |