From 2ec88114c61dcb0e6253aa3d8312ff5364c79080 Mon Sep 17 00:00:00 2001 From: uvos Date: Wed, 21 Dec 2022 23:38:14 +0100 Subject: [PATCH] dont force 64bit --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c8a7a61..02917e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,6 @@ set(LIBS -pthread ) add_executable(${PROJECT_NAME} ${SRC_FILES}) target_link_libraries( ${PROJECT_NAME} ${LIBS}) -set_target_properties( ${PROJECT_NAME} PROPERTIES COMPILE_FLAGS -m64 LINK_FLAGS -m64) add_definitions(" -std=c++11 -Wall -O2 -g") install(TARGETS serialmultiplexer RUNTIME DESTINATION bin)