mirror of
https://github.com/microsoft/WSL.git
synced 2025-07-02 15:11:10 +00:00

Many Microsoft employees have contributed to the Windows Subsystem for Linux, this commit is the result of their work since 2016. The entire history of the Windows Subsystem for Linux can't be shared here, but here's an overview of WSL's history after it moved to it own repository in 2021: Number of commits on the main branch: 2930 Number of contributors: 31 Head over https://github.com/microsoft/WSL/releases for a more detailed history of the features added to WSL since 2021.
9 lines
No EOL
405 B
CMake
9 lines
No EOL
405 B
CMake
set(NUGET_PACKAGES Microsoft.WSL.PluginApi.nuspec)
|
|
|
|
# generate vars with native paths since nuget won't accept unix path separators
|
|
cmake_path(NATIVE_PATH CMAKE_SOURCE_DIR CMAKE_SOURCE_DIR_NATIVE)
|
|
cmake_path(NATIVE_PATH CMAKE_BINARY_DIR CMAKE_BINARY_DIR_NATIVE)
|
|
|
|
foreach(PACKAGE ${NUGET_PACKAGES})
|
|
configure_file("${CMAKE_CURRENT_LIST_DIR}/${PACKAGE}.in" "${CMAKE_BINARY_DIR}/${PACKAGE}")
|
|
endforeach() |