mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-16 03:19:07 +02:00
Implement most of the chunk format
This commit is contained in:
parent
1e74afda41
commit
cbe6461882
23 changed files with 1327 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
include_directories(${ZLIB_INCLUDE_DIRS})
|
||||
link_directories(${ZLIB_LIBRARY_DIRS})
|
||||
|
||||
add_executable(MinedMap
|
||||
MinedMap.cpp
|
||||
NBT/Tag.cpp
|
||||
World/Chunk.cpp
|
||||
World/Region.cpp
|
||||
)
|
||||
set_target_properties(MinedMap PROPERTIES COMPILE_FLAGS "-std=c++11 -Wall ${ZLIB_CFLAGS_OTHER}")
|
||||
set_target_properties(MinedMap PROPERTIES LINK_FLAGS "${ZLIB_LDFLAGS_OTHER}")
|
||||
target_link_libraries(MinedMap ${ZLIB_LIBRARIES})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue