https://github.com/xorz57/morsecodeplayer
Morse Code Player written in C++20
https://github.com/xorz57/morsecodeplayer
morse-code morse-code-audio
Last synced: 2 months ago
JSON representation
Morse Code Player written in C++20
- Host: GitHub
- URL: https://github.com/xorz57/morsecodeplayer
- Owner: xorz57
- License: mit
- Created: 2024-06-04T07:44:33.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-10T07:39:32.000Z (12 months ago)
- Last Synced: 2025-01-29T16:27:49.517Z (4 months ago)
- Topics: morse-code, morse-code-audio
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# MorseCodePlayer
[](https://github.com/xorz57/MorseCodePlayer/actions/workflows/Build.yml)
## Note
**⚠️ macOS is not supported!**
## How to Build
#### Linux & macOS
```bash
git clone https://github.com/microsoft/vcpkg.git ~/vcpkg
~/vcpkg/bootstrap-vcpkg.shgit clone https://github.com/xorz57/StateMachine.git
cd StateMachine
cmake -B build -DCMAKE_BUILD_TYPE=Release -S . -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake --build build --config Release
ctest --build-config Release
```#### Windows
```powershell
git clone https://github.com/microsoft/vcpkg.git C:/vcpkg
C:/vcpkg/bootstrap-vcpkg.bat
C:/vcpkg/vcpkg.exe integrate installgit clone https://github.com/xorz57/StateMachine.git
cd StateMachine
cmake -B build -DCMAKE_BUILD_TYPE=Release -S . -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake --build build --config Release
ctest --build-config Release
```