Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hube12 committed Feb 23, 2020
1 parent 1e7e7ef commit 51cfef2
Show file tree
Hide file tree
Showing 12 changed files with 5,824 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
cmake-build-debug
10 changes: 10 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.10)
project(Viewer)

set(CMAKE_CXX_STANDARD 14)
find_package(PNG REQUIRED)
set(CMAKE_CXX_FLAGS "${CMAKE_XX_FLAGS} -Wall")
include_directories(${PNG_INCLUDE_DIR})

add_executable(MapViewer generationByCubitect/generator.cpp generationByCubitect/layers.cpp generationByCubitect/finders.cpp xmap.cpp main.cpp)
target_link_libraries(MapViewer ${PNG_LIBRARY})
Loading

0 comments on commit 51cfef2

Please sign in to comment.