source: nscp/files/CMakeLists.txt @ c391984

0.4.00.4.10.4.2
Last change on this file since c391984 was c391984, checked in by Michael Medin <michael@…>, 2 years ago

0.4.x:

  • tweaks to the build environment to make the installer work
  • fixed Unicode issue
  • fixed performance data
  • improved so alias doesn't re-process the data so much
  • Property mode set to 100644
File size: 507 bytes
Line 
1cmake_minimum_required(VERSION 2.8)
2
3MACRO(copy_single_file src destDir)
4        MESSAGE(STATUS " + ${src}")
5        FILE(COPY ${CMAKE_CURRENT_SOURCE_DIR}/${src} DESTINATION ${destDir})
6ENDMACRO(copy_single_file)
7
8MESSAGE(STATUS "Copying files:")
9copy_single_file(license.txt ${CMAKE_BINARY_DIR})
10copy_single_file(nrpe_dh_512.pem ${CMAKE_BINARY_DIR}/security)
11copy_single_file(old-settings.map ${CMAKE_BINARY_DIR})
12copy_single_file(counters.defs ${CMAKE_BINARY_DIR})
13copy_single_file(../changelog ${CMAKE_BINARY_DIR})
14
15
16
Note: See TracBrowser for help on using the repository browser.