7 lines
87 B
CMake
7 lines
87 B
CMake
# Find zlib
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
target_link_libraries(${PROJECT_NAME}
|
|
z
|
|
)
|