From 25584f09e57034b3164562c66e43c87c13b16c61 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 2 May 2021 11:34:10 -0400 Subject: [PATCH] Build and install mapsim[.exe]. --- map65/libm65/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/map65/libm65/CMakeLists.txt b/map65/libm65/CMakeLists.txt index 7ae92f4d4..0409eb412 100644 --- a/map65/libm65/CMakeLists.txt +++ b/map65/libm65/CMakeLists.txt @@ -131,8 +131,11 @@ target_link_libraries (m65impl wsjt_fort wsjt_cxx Qt5::Core) add_executable (m65 m65.f90 m65a.f90) target_link_libraries (m65 m65impl ${FFTW3_LIBRARIES}) +add_executable (mapsim mapsim.f90) +target_link_libraries (mapsim m65impl ${FFTW3_LIBRARIES}) + install ( - TARGETS m65 + TARGETS m65 mapsim RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT runtime BUNDLE DESTINATION . COMPONENT runtime )