1 |
+ |
# Locate the threads package |
2 |
+ |
set(CMAKE_THREAD_PREFER_PTHREAD TRUE) |
3 |
+ |
set(THREADS_PREFER_PTHREAD_FLAG TRUE) |
4 |
+ |
find_package(Threads REQUIRED) |
5 |
+ |
|
6 |
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../rt) |
7 |
|
|
8 |
|
add_executable(genbeads genbeads.c hermite3.c) |
17 |
|
add_executable(gensky gensky.c sun.c) |
18 |
|
target_link_libraries(gensky rtrad ${LIB_M}) |
19 |
|
|
20 |
< |
add_executable(genssky genssky.c sun.c atmos.c ../rt/data.c) |
21 |
< |
target_link_libraries(genssky rtrad ${LIB_M}) |
20 |
> |
add_executable(genssky genssky.c sun.c atmos.c) |
21 |
> |
target_link_libraries(genssky rtrad ${LIB_M} Threads::Threads) |
22 |
|
|
23 |
+ |
add_executable(gensdaymtx gensdaymtx.c sun.c atmos.c) |
24 |
+ |
target_link_libraries(gensdaymtx rtrad ${LIB_M} Threads::Threads) |
25 |
+ |
|
26 |
|
add_executable(gendaylit gendaylit.c sun.c) |
27 |
|
target_link_libraries(gendaylit rtrad ${LIB_M}) |
28 |
|
|
29 |
< |
add_executable(gendaymtx gendaymtx.c sun.c) |
29 |
> |
add_executable(gendaymtx gendaymtx.c sun.c loadEPW.c) |
30 |
|
target_link_libraries(gendaymtx rtrad ${LIB_M}) |
31 |
|
|
32 |
|
add_executable(genblinds genblinds.c) |
71 |
|
genclock |
72 |
|
gendaylit |
73 |
|
gendaymtx |
74 |
+ |
gensdaymtx |
75 |
|
genprism |
76 |
|
genrev |
77 |
|
gensky |