From c51f1c9c33258dfc48fe0b0ceffb99feecdf7073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Patrick=20Urbanke=20=28=E5=8A=89=E8=87=AA=E6=88=90?= =?UTF-8?q?=29?= Date: Thu, 22 May 2025 08:46:53 +0200 Subject: [PATCH] Updated README for Windows instructions (#6) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a71dfac..90f9a88 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![Generic badge](https://img.shields.io/badge/C++-20-blue.svg)](https://shields.io/) [![Generic badge](https://img.shields.io/badge/gcc-11+-blue.svg)](https://shields.io/) [![Generic badge](https://img.shields.io/badge/clang-14+-blue.svg)](https://shields.io/) +[![Generic badge](https://img.shields.io/badge/MSVC-17+-blue.svg)](https://shields.io/) sqlgen is a modern, type-safe ORM and SQL query generator for C++20, inspired by Python's [SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy)/[SQLModel](https://github.com/fastapi/sqlmodel) and Rust's [Diesel](https://github.com/diesel-rs/diesel). It provides a fluent, composable interface for database operations with compile-time type checking and SQL injection protection. @@ -22,7 +23,7 @@ sqlgen is a modern, type-safe ORM and SQL query generator for C++20, inspired by ### Installation -1. Install required dependencies: +1. Install required dependencies (skip this step on Windows): ```bash sudo apt-get install autoconf bison flex ```