From 301ee4b8c3fc0d0b00163ee232e56e3fe1eb1a8b Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Sun, 2 Mar 2014 21:53:35 -0700 Subject: [PATCH] CMake: Add missing dependency on zlib from p3express. --- panda/src/express/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/express/CMakeLists.txt b/panda/src/express/CMakeLists.txt index 631078215f..56d324bcbf 100644 --- a/panda/src/express/CMakeLists.txt +++ b/panda/src/express/CMakeLists.txt @@ -127,7 +127,7 @@ composite_sources(p3express P3EXPRESS_SOURCES) add_library(p3express ${P3EXPRESS_SOURCES} ${P3EXPRESS_HEADERS}) target_link_libraries(p3express p3pandabase p3dtool p3dtoolconfig - ${_TAR_LIBRARY}) + ${_TAR_LIBRARY} ${_ZLIB_LIBRARY}) target_interrogate(p3express ALL) install(TARGETS p3express DESTINATION lib)