From 6a1326e059fd94ed1c283b74e460e6ada885c3e2 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Wed, 16 Aug 2023 18:37:35 +0500 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59b3d03..45e81b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,20 +29,20 @@ include_directories(experiment) # Add executables add_executable(experiment - experiment/main.m + experiment/main.m experiment/telegram.m experiment/telegram.h) target_link_libraries(experiment "-framework Foundation") # Set the properties for the target set_target_properties(experiment PROPERTIES - COMPILE_FLAGS "${CMAKE_OBJC_FLAGS}" - LINK_FLAGS "${OBJC_FRAMEWORKS}" + COMPILE_FLAGS "${CMAKE_OBJC_FLAGS}" + LINK_FLAGS "${OBJC_FRAMEWORKS}" ) # Add a custom target to run the executable add_custom_target(run - COMMAND experiment - DEPENDS experiment - USES_TERMINAL + COMMAND experiment + DEPENDS experiment + USES_TERMINAL ) \ No newline at end of file