mirror of
https://github.com/starr-dusT/tzdb_to_nx
synced 2024-03-05 21:18:52 -08:00
Initial commit
This commit is contained in:
commit
d2349d6587
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.cache
|
||||
build
|
5
CMakeLists.txt
Normal file
5
CMakeLists.txt
Normal 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
4
src/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
||||
add_executable(tzdb2nx
|
||||
main.cpp)
|
||||
|
||||
include_directories(.)
|
3
src/main.cpp
Normal file
3
src/main.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include <cstdio>
|
||||
|
||||
int main() { return 0; }
|
Loading…
Reference in New Issue
Block a user