source: nscp/scripts/CMakeLists.txt @ e11d494

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

various fixes and changes here and there
Mainly build related (been trying to fix symbol dumper problems) as well as tweaks for the up-coming "nightly release")

  • Property mode set to 100644
File size: 641 bytes
Line 
1cmake_minimum_required(VERSION 2.6)
2
3FILE (GLOB scripts_BAT "*.bat")
4FILE (GLOB scripts_VBS "*.vbs")
5FILE (GLOB scripts_PS1 "*.ps1")
6FILE (GLOB scripts_LIB "lib/*.vbs")
7
8SET(script_ALL ${scripts_BAT} ${scripts_VBS} ${scripts_PS1})
9
10FOREACH(file ${script_ALL})
11        get_filename_component(filename ${file} NAME)
12        #MESSAGE(STATUS " + ${filename} (${file})")
13        copy_single_file(scripts ${filename} scripts)
14ENDFOREACH(file ${script_ALL})
15
16
17FOREACH(file ${scripts_LIB})
18        get_filename_component(filename ${file} NAME)
19        #MESSAGE(STATUS " + lib - ${filename}")
20        copy_single_file("script lib" lib/${filename} scripts/lib)
21ENDFOREACH(file ${scripts_LIB})
Note: See TracBrowser for help on using the repository browser.