modeco80
9c6448a817
libpixel (suprisingly) still compiles, but depends on libraries in a very annoying manner that makes EuropaTools hard to compile. Also, I don't like stb_image_write. Replace it with some hand-done structs and the simpler/faster/better `lodepng`.
15 lines
No EOL
240 B
CMake
15 lines
No EOL
240 B
CMake
#
|
|
# EuropaTools
|
|
#
|
|
# (C) 2021-2025 modeco80 <lily.modeco80@protonmail.ch>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
add_library(lodepng
|
|
lodepng/lodepng.cpp
|
|
)
|
|
|
|
target_include_directories(lodepng PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lodepng
|
|
) |