mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
9 lines
235 B
CMake
9 lines
235 B
CMake
enable_language(CXX)
|
|
|
|
add_executable(foo foo.cpp)
|
|
|
|
set_target_properties(foo PROPERTIES
|
|
COMMON_LANGUAGE_RUNTIME "netcore"
|
|
DOTNET_TARGET_FRAMEWORK "net8.0-windows"
|
|
VS_FRAMEWORK_REFERENCES "Microsoft.WindowsDesktop.App.WPF")
|