1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Add macOS target for CLI build

This commit is contained in:
Richard Jenkins
2017-05-12 23:57:54 +01:00
committed by Gymnasiast
parent 63771389c3
commit f7f5cb754b
2 changed files with 227 additions and 0 deletions

15
OpenRCT2-cli/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
//
// main.cpp
// OpenRCT2-cli
//
// Created by Richard Jenkins on 12/05/2017.
// Copyright © 2017 OpenRCT2. All rights reserved.
//
#include <iostream>
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}