view src/insert_verification/CMakeLists.txt @ 25:38ba1606e62d

Refresh memory only between put and put
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Wed, 13 Apr 2016 16:30:47 +0900
parents dcfd4b848886
children d2073e23f206
line wrap: on
line source

cmake_minimum_required(VERSION 2.8)

# import LLRB from Gears
set(llrb_path $ENV{GEARS_PATH}/src/llrb)

include_directories(include)
include_directories($ENV{GEARS_PATH}/src/include)
include_directories(${llrb_path}/include)

add_executable(insert_verification
               main.c
               akashaCS.c
               akashaLLRBContext.c

               ${llrb_path}/allocate.c
               ${llrb_path}/llrb.c
               ${llrb_path}/compare.c
               ${llrb_path}/stack.c
              )