Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joeloftusdev/dotnet_cmake_examples
CMake C#/.NET 5+ WPF and WinForms Examples
https://github.com/joeloftusdev/dotnet_cmake_examples
cmake csharp dotnet windows-forms wpf
Last synced: about 22 hours ago
JSON representation
CMake C#/.NET 5+ WPF and WinForms Examples
- Host: GitHub
- URL: https://github.com/joeloftusdev/dotnet_cmake_examples
- Owner: joeloftusdev
- License: mit
- Created: 2024-01-30T16:22:28.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-13T17:43:18.000Z (9 months ago)
- Last Synced: 2024-02-13T18:48:11.169Z (9 months ago)
- Topics: cmake, csharp, dotnet, windows-forms, wpf
- Language: C#
- Homepage: https://joeloftus.net/
- Size: 189 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## C# With CMake Example
How to build a WPF app & WinForms app with CMake in .NET 5+
## Build
```
# Create a build directory and build using CMake in the root dir
mkdir build && cd build
cmake ..# Build
cmake --build .```