# HG changeset patch # User Andre Heinecke # Date 1395413062 0 # Node ID c879a709310d9060938406b0a3195eefd160d01f # Parent 7e2d08555112842595c93e7833e988038a4807d7 Add static common library diff -r 7e2d08555112 -r c879a709310d common/CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/CMakeLists.txt Fri Mar 21 14:44:22 2014 +0000 @@ -0,0 +1,8 @@ +include_directories(${POLARSSL_INCLUDE_DIR}) + +set (m13_common_src + listutil.c + strhelp.c +) + +add_library(m13_common STATIC ${m13_common_src})