We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7141160 commit d8d1606Copy full SHA for d8d1606
CMakeLists.txt
@@ -13,6 +13,8 @@ add_library(${PROJECT_NAME}
13
target_include_directories(${PROJECT_NAME} PUBLIC
14
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
15
$<INSTALL_INTERFACE:include>)
16
+set_target_properties(${PROJECT_NAME} PROPERTIES
17
+ POSITION_INDEPENDENT_CODE ON)
18
19
if(APPLE) # macOS
20
find_library(IOKIT_LIBRARY IOKit)
include/serial/serial.h
@@ -343,7 +343,7 @@ class Serial {
343
*
344
* \param size A maximum length of combined lines, defaults to 65536 (2^16)
345
346
- * \param eol A string to match against for the EOL.
+ * \param eol A string to match sagainst for the EOL.
347
348
* \return A vector<string> containing the lines.
349
0 commit comments