~tapaal-ltl/verifypn/mcc2021

« back to all changes in this revision

Viewing changes to src/LTL/CMakeLists.txt

  • Committer: Peter G. Jensen
  • Date: 2021-04-02 10:30:15 UTC
  • Revision ID: root@petergjoel.dk-20210402103015-utau52jfl1sa27o9
trying to compile on mac

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
add_library(LTL ${HEADER_FILES} _LTL.cpp)
8
8
 
9
 
if (VERIFYPN_Static AND NOT APPLE)
 
9
if (VERIFYPN_Static OR APPLE)
10
10
    target_link_libraries(LTL PRIVATE LTL_algorithm LTL_simplification spot bddx)
11
11
else()
12
12
    target_link_libraries(LTL PRIVATE LTL_algorithm LTL_simplification
13
 
                          -Wl,-Bstatic spot bddx -Wl,-Bdynamic)
 
13
                              -Wl,-Bstatic spot bddx -Wl,-Bdynamic)
14
14
endif()