modeco80
fae513fdfe
PakReader won't read everything in ReadData(), it now only reads the header and TOC. Files now need to be read in separately. Adds progress bar to europa_pack_extractor. Moved code around.
16 lines
403 B
CMake
Executable file
16 lines
403 B
CMake
Executable file
cmake_minimum_required(VERSION 3.10)
|
|
|
|
# Prohibit in-source tree builds.
|
|
if(" ${CMAKE_SOURCE_DIR}" STREQUAL " ${CMAKE_BINARY_DIR}")
|
|
message(FATAL_ERROR "In-source builds are strictly prohibited.")
|
|
endif()
|
|
|
|
include(cmake/Policies.cmake)
|
|
|
|
project(EuropaTools)
|
|
|
|
add_subdirectory(third_party/libpixel)
|
|
add_subdirectory(third_party/indicators)
|
|
|
|
add_subdirectory(src/libeuropa)
|
|
add_subdirectory(src/tools)
|