ดังนั้นทำไมไม่ใช้ PowerShell เพื่อสร้างรายการไฟล์ต้นฉบับให้คุณ ลองดูที่สคริปต์นี้
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
ตอนนี้บันทึกไฟล์นี้เป็น "generateSourceList.ps1" ตัวอย่างเช่นและเรียกใช้สคริปต์เป็น
~>./generateSourceList.ps1 -root "C:\Workspace" > out.txt
ไฟล์ out.txt จะมี
set(SOURCE "A/a.cpp" "B/b.cpp")