Skip to content

Commit

Permalink
chore(genblinds, genbox, gensky): added missing library links
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Jul 25, 2020
1 parent 783cea5 commit d6ba86a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/gen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ add_executable(genbeads genbeads.c hermite3.c)
target_link_libraries(genbeads ${LIB_M})

add_executable(genbox genbox.c)
target_link_libraries(genbox rtrad)

add_executable(genmarble genmarble.c ../common/random.h)
target_link_libraries(genmarble ${LIB_M})

add_executable(gensky gensky.c sun.c)
target_link_libraries(gensky ${LIB_M})
target_link_libraries(gensky rtrad ${LIB_M})

add_executable(gendaylit gendaylit.c sun.c)
target_link_libraries(gendaylit rtrad ${LIB_M})
Expand All @@ -18,10 +19,10 @@ add_executable(gendaymtx gendaymtx.c sun.c)
target_link_libraries(gendaymtx rtrad ${LIB_M})

add_executable(genblinds genblinds.c)
target_link_libraries(genblinds ${LIB_M})
target_link_libraries(genblinds rtrad ${LIB_M})

add_executable(genprism genprism.c)
target_link_libraries(genprism ${LIB_M})
target_link_libraries(genprism rtrad ${LIB_M})

add_executable(xform xform.c)
target_link_libraries(xform rtrad)
Expand Down

0 comments on commit d6ba86a

Please # to comment.