Fossil SCM
| 6ea30fb… | florian | 1 | if(CREATE_SHARED) |
| 6ea30fb… | florian | 2 | file(REMOVE ./test_file_shared.orig ./test_file_shared.zip) |
| 6ea30fb… | florian | 3 | file(WRITE ./test_file_shared.txt "Hello Hello Hello") |
| 6ea30fb… | florian | 4 | endif(CREATE_SHARED) |
| 6ea30fb… | florian | 5 | |
| 6ea30fb… | florian | 6 | if(MOVE_SHARED) |
| 6ea30fb… | florian | 7 | file(RENAME ./test_file_shared.txt ./test_file_shared.orig) |
| 6ea30fb… | florian | 8 | endif(MOVE_SHARED) |
| 6ea30fb… | florian | 9 | |
| 6ea30fb… | florian | 10 | if(DELETE_SHARED) |
| 6ea30fb… | florian | 11 | file(REMOVE |
| 6ea30fb… | florian | 12 | ./test_file_shared.txt |
| 6ea30fb… | florian | 13 | ./test_file_shared.orig |
| 6ea30fb… | florian | 14 | ./test_file_shared.zip) |
| 6ea30fb… | florian | 15 | endif(DELETE_SHARED) |
| 6ea30fb… | florian | 16 | |
| 6ea30fb… | florian | 17 | if(CREATE_STATIC) |
| 6ea30fb… | florian | 18 | file(REMOVE ./test_file_static.orig ./test_file_static.zip) |
| 6ea30fb… | florian | 19 | file(WRITE ./test_file_static.txt "Hello Hello Hello") |
| 6ea30fb… | florian | 20 | endif(CREATE_STATIC) |
| 6ea30fb… | florian | 21 | |
| 6ea30fb… | florian | 22 | if(MOVE_STATIC) |
| 6ea30fb… | florian | 23 | file(RENAME ./test_file_static.txt ./test_file_static.orig) |
| 6ea30fb… | florian | 24 | endif(MOVE_STATIC) |
| 6ea30fb… | florian | 25 | |
| 6ea30fb… | florian | 26 | if(DELETE_STATIC) |
| 6ea30fb… | florian | 27 | file(REMOVE |
| 6ea30fb… | florian | 28 | ./test_file_static.txt |
| 6ea30fb… | florian | 29 | ./test_file_static.orig |
| 6ea30fb… | florian | 30 | ./test_file_static.zip) |
| 6ea30fb… | florian | 31 | endif(DELETE_STATIC) |
| 6ea30fb… | florian | 32 |