Mercurial > hg > GearsTemplate
annotate src/parallel_execution/CMakeLists.txt @ 131:a4507906938c
Fix compile error but not work
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 25 Oct 2016 00:49:28 +0900 |
parents | a574ba0da60f |
children | 909d0548284f |
rev | line source |
---|---|
86 | 1 cmake_minimum_required(VERSION 2.8) |
2 | |
101 | 3 # -DUSE_CUDA |
116 | 4 add_definitions("-Wall -g -O") |
86 | 5 |
131
a4507906938c
Fix compile error but not work
Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
parents:
117
diff
changeset
|
6 set(CMAKE_C_COMPILER $ENV{CBC_COMPILER}) |
86 | 7 |
90 | 8 add_executable(twice |
86 | 9 main.c |
10 context.c | |
11 rb_tree.c | |
12 stack.c | |
13 origin_cs.c | |
14 allocate.c | |
15 compare.c | |
95
3e28ee215c0e
modify twice, use OSAtomiceCompareAndSwap
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
92
diff
changeset
|
16 worker.c |
112 | 17 dependency.c |
95
3e28ee215c0e
modify twice, use OSAtomiceCompareAndSwap
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
92
diff
changeset
|
18 time.c |
92 | 19 twice.c |
86 | 20 ) |
21 |