blob: 9f0a3d7ef19c5c831420cfa06c6963de57b171e0 [file] [log] [blame]
list(APPEND CXXFLAGS -std=c++11 -pthread)
list(APPEND LDFLAGS -pthread)
file(GLOB Source RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.c *.cpp)
if(${CMAKE_EXE_LINKER_FLAGS} MATCHES "-static")
list(APPEND LDFLAGS -Wl,--whole-archive -lpthread -Wl,--no-whole-archive)
endif()
llvm_singlesource()