Commit 8760a847 by lucapegolotti

Set structure of the linearizability_tester_folder

parent b9ca6dc9
cmake_minimum_required (VERSION 2.6)
project (Linearizability-checker C CXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -lrt")
find_package(Threads REQUIRED)
if(CMAKE_USE_PTHREADS_INIT)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
endif()
# setting directories
# link_directories(/home/lucapegolotti/embb/build)
include_directories(../)
# setting names of libraries
set(PROJECT_LINK_LIBS
../build/base_cpp/libembb_base_cpp.a
../build/base_c/libembb_base_c.a
../build/containers_cpp/libembb_containers_cpp.a
)
add_executable(${PROJECT_NAME} lt.cc)
# target_link_libraries(${PROJECT_NAME} ${CMAKE_THREADS_LIBS_INIT})
target_link_libraries(${PROJECT_NAME} ${CMAKE_THREAD_LIBS_INIT} ${PROJECT_LINK_LIBS}) # ${CMAKE_THREADS_LIBS_INIT})
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment