mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
9 lines
140 B
CMake
9 lines
140 B
CMake
enable_language(CSharp)
|
|
|
|
add_library(foo SHARED foo.cs )
|
|
|
|
set_target_properties(foo
|
|
PROPERTIES
|
|
DOTNET_TARGET_FRAMEWORK_VERSION "v3.9"
|
|
)
|