Browse Source

In CMake builds, link panda/express with Tar (when enabled).

kestred 12 years ago
parent
commit
a6332e3cae
1 changed files with 2 additions and 1 deletions
  1. 2 1
      panda/src/express/CMakeLists.txt

+ 2 - 1
panda/src/express/CMakeLists.txt

@@ -124,7 +124,8 @@ set(P3EXPRESS_SOURCES
 composite_sources(p3express P3EXPRESS_SOURCES)
 
 add_library(p3express ${P3EXPRESS_SOURCES} ${P3EXPRESS_HEADERS})
-target_link_libraries(p3express p3pandabase p3dtool p3dtoolconfig)
+target_link_libraries(p3express p3pandabase p3dtool p3dtoolconfig
+  ${TAR_LIBRARY})
 target_interrogate(p3express ALL)
 
 #add_executable(p3expressTestTypes test_types.cxx)