From 72f43d9976c8fb91b62b313b09039b1e8addd6f3 Mon Sep 17 00:00:00 2001 From: William Woodall Date: Mon, 3 Dec 2012 15:31:41 -0800 Subject: [PATCH] Small CMakeLists.txt touch ups. --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea61fc6..e9b1215 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,15 +22,15 @@ endif() ## Sources set(serial_SRCS src/serial.cc - # include/serial/serial.h - # include/serial/v8stdint.h + include/serial/serial.h + include/serial/v8stdint.h ) if(UNIX) # If unix - list (APPEND serial_SRCS src/impl/unix.cc) + list(APPEND serial_SRCS src/impl/unix.cc) else() # If windows - list (APPEND serial_SRCS src/impl/win.cc) + list(APPEND serial_SRCS src/impl/win.cc) endif() ## Add serial library