From bf1bfa34d5ad0e41379179fb9d2dfe0e2cb372f6 Mon Sep 17 00:00:00 2001 From: Keuin Date: Sun, 17 Apr 2022 20:34:35 +0800 Subject: Bugfix: wrong cmake config caused not compiling on debian 5.10. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index bd4d71f..6924727 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,14 +4,16 @@ project(rt) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED True) -set(CMAKE_EXE_LINKER_FLAGS "-latomic") -set(common_compiler_args "-Wall -Werror -Wno-unused -std=c++11 -pthread") +set(common_compiler_args "-Wall -Werror -Wno-unused -std=c++11") set(CMAKE_CXX_FLAGS_DEBUG "${common_compiler_args} -g -ggdb -fsanitize=address -DDEBUG") set(CMAKE_CXX_FLAGS_RELEASE "${common_compiler_args} -O2") set(CMAKE_VERBOSE_MAKEFILE on) +link_libraries(pthread) +link_libraries(atomic) + # main executable add_executable(rt main.cpp vec.h bitmap.h ray.h bitfont.h hitlist.h object.h sphere.h viewport.h aa.h material.h material_diffusive.h material_diffusive.cpp material_reflective.h material_reflective.cpp material_dielectric.cpp material_dielectric.h tracelog.h threading.h) -- cgit v1.2.3