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