Initial Commit

This commit is contained in:
2024-07-01 15:05:23 -04:00
commit 76de1b72ef
3 changed files with 50 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(jjx)
set(CMAKE_CXX_STANDARD 17)
add_executable(jjx main.cpp)

38
README.md Normal file
View File

@@ -0,0 +1,38 @@
# JJX - Josh's JSON and XML Library
A bare-minimal, yet industrial-strength C++ 20 library for reading, writing, and serialization of JSON and XML file formats.
![Static Badge](https://img.shields.io/badge/Lit-Based-%20)
![Static Badge](https://img.shields.io/badge/License-Public%20Domain-%20)
![Static Badge](https://img.shields.io/badge/Linux-Supported-%20?style=flat&logo=linux)
![Static Badge](https://img.shields.io/badge/Fedora-Supported-%20?style=flat&logo=fedora)
![Static Badge](https://img.shields.io/badge/Win10-Supported-%20?style=flat&logo=windows)
## Features
* Modern C++ (20)
* Static Library
* GCC and MSVC support
* Tested on Fedora Linux and Windows 10.
## Benchmarks
## Using JJX
### Installing via CPM
### Usage Sample
## Contributing
## License
Developed by Josh O'Leary @ Redacted Software.
Special Thanks to William J Tomasine II & Maxine Hayes.
(C) 2024, A Redacted Software Product.
This work is dedicated to the public domain.

6
main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}