~tapaal-ltl/verifypn/answer-for-gui

« back to all changes in this revision

Viewing changes to src/LTL/CMakeLists.txt

  • Committer: srba.jiri at gmail
  • Date: 2021-04-02 18:13:50 UTC
  • mfrom: (230.1.28 mcc2021)
  • Revision ID: srba.jiri@gmail.com-20210402181350-k71xtjut3r48l1o5
merged in lp:~tapaal-ltl/verifypn/mcc2021 adding LTL, colored fixed-point unfolding for CPN and other performance improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(CMAKE_INCLUDE_CURRENT_DIR ON)
 
2
 
 
3
 
 
4
add_subdirectory(Algorithm)
 
5
add_subdirectory(Simplification)
 
6
 
 
7
add_library(LTL ${HEADER_FILES} _LTL.cpp)
 
8
 
 
9
if (VERIFYPN_Static OR APPLE)
 
10
    target_link_libraries(LTL PRIVATE LTL_algorithm LTL_simplification spot bddx)
 
11
else()
 
12
    target_link_libraries(LTL PRIVATE LTL_algorithm LTL_simplification
 
13
                              -Wl,-Bstatic spot bddx -Wl,-Bdynamic)
 
14
endif()