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 | |
|---|
| 1 | cmake_minimum_required(VERSION 2.6) |
|---|
| 2 | |
|---|
| 3 | FILE (GLOB scripts_BAT "*.bat") |
|---|
| 4 | FILE (GLOB scripts_VBS "*.vbs") |
|---|
| 5 | FILE (GLOB scripts_PS1 "*.ps1") |
|---|
| 6 | FILE (GLOB scripts_LIB "lib/*.vbs") |
|---|
| 7 | |
|---|
| 8 | SET(script_ALL ${scripts_BAT} ${scripts_VBS} ${scripts_PS1}) |
|---|
| 9 | |
|---|
| 10 | FOREACH(file ${script_ALL}) |
|---|
| 11 | get_filename_component(filename ${file} NAME) |
|---|
| 12 | #MESSAGE(STATUS " + ${filename} (${file})") |
|---|
| 13 | copy_single_file(scripts ${filename} scripts) |
|---|
| 14 | ENDFOREACH(file ${script_ALL}) |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | FOREACH(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) |
|---|
| 21 | ENDFOREACH(file ${scripts_LIB}) |
|---|
Note: See
TracBrowser
for help on using the repository browser.