तो आपके लिए स्रोत फ़ाइलों की सूची बनाने के लिए पॉवरशेल का उपयोग क्यों न करें। इस लिपि पर एक नजर डालें
param (
[Parameter(Mandatory=$True)]
[string]$root
)
if (-not (Test-Path -Path $root)) {
throw "Error directory does not exist"
}
#get the full path of the root
$rootDir = get-item -Path $root
$fp=$rootDir.FullName;
$files = Get-ChildItem -Path $root -Recurse -File |
Where-Object { ".cpp",".cxx",".cc",".h" -contains $_.Extension} |
Foreach {$_.FullName.replace("${fp}\","").replace("\","/")}
$CMakeExpr = "set(SOURCES "
foreach($file in $files){
$CMakeExpr+= """$file"" " ;
}
$CMakeExpr+=")"
return $CMakeExpr;
मान लीजिए कि आपके पास इस संरचना वाला एक फ़ोल्डर है
C:\Workspace\A
--a.cpp
C:\Workspace\B
--b.cpp
अब इस फ़ाइल को उदाहरण के लिए "GenerSourceList.ps1" के रूप में सहेजें, और स्क्रिप्ट को इस रूप में चलाएँ
~>./generateSourceList.ps1 -root "C:\Workspace" > out.txt
बाहरी फ़ाइल में समाहित किया जाएगा
set(SOURCE "A/a.cpp" "B/b.cpp")