Initial commit

This commit is contained in:
lat9nq 2023-05-27 00:30:34 -04:00
commit d2349d6587
4 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.cache
build

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(tzdb2nx VERSION 1.0)
add_subdirectory(src)

4
src/CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
add_executable(tzdb2nx
main.cpp)
include_directories(.)

3
src/main.cpp Normal file
View File

@ -0,0 +1,3 @@
#include <cstdio>
int main() { return 0; }