1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
256 B
CMake

#### MiniZinc assembler / interpreter Binary Target
add_executable(mznasm mznasm.cpp)
target_link_libraries(mznasm mzn)
install(
TARGETS mznasm
EXPORT libminizincTargets
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)