Peki neden sizin için kaynak dosyalarının listesini oluşturmak için powershell kullanmıyorsunuz. Bu senaryoya bir göz atın
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;
Bu yapıya sahip bir klasörünüz olduğunu varsayalım
C:\Workspace\A
--a.cpp
C:\Workspace\B
--b.cpp
Şimdi bu dosyayı örneğin "createSourceList.ps1" olarak kaydedin ve betiği şu şekilde çalıştırın:
~>./generateSourceList.ps1 -root "C:\Workspace" > out.txt
out.txt dosyası
set(SOURCE "A/a.cpp" "B/b.cpp")