diff options
author | Kozlov Dmitry <dima@server> | 2010-08-03 13:28:53 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-08-03 13:28:53 +0400 |
commit | 5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f (patch) | |
tree | e72134e47e1491580af15e3eccbba451f13fdd42 /accel-pptpd/CMakeLists.txt | |
parent | ba8e1a64e75930a161afac9048e7d03b7f880644 (diff) | |
download | accel-ppp-xebd-5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f.tar.gz accel-ppp-xebd-5a2d6079eba1c7e2a9479cb10d714b5a97bbfe4f.zip |
initiating work on accel-pptpd, replacement of modified poptop
Diffstat (limited to 'accel-pptpd/CMakeLists.txt')
-rw-r--r-- | accel-pptpd/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/accel-pptpd/CMakeLists.txt b/accel-pptpd/CMakeLists.txt new file mode 100644 index 0000000..5ee16fd --- /dev/null +++ b/accel-pptpd/CMakeLists.txt @@ -0,0 +1,16 @@ +PROJECT (pptpd) +cmake_minimum_required(VERSION 2.6) + +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall") + +ADD_SUBDIRECTORY(triton) + +ADD_EXECUTABLE(pptpd + pptpd.c + ctrl.c + log.c + ppp.c + ppp_fsm.c + ppp_lcp.c +) +TARGET_LINK_LIBRARIES(pptpd pthread triton)
\ No newline at end of file |