mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
62 lines
1.2 KiB
CMake
62 lines
1.2 KiB
CMake
find_package (Portaudio REQUIRED)
|
|
|
|
find_package (Usb REQUIRED)
|
|
|
|
set (map65_CXXSRCS
|
|
about.cpp
|
|
astro.cpp
|
|
bandmap.cpp
|
|
devsetup.cpp
|
|
displaytext.cpp
|
|
getdev.cpp
|
|
getfile.cpp
|
|
main.cpp
|
|
mainwindow.cpp
|
|
messages.cpp
|
|
meterwidget.cpp
|
|
plotter.cpp
|
|
set570.cpp
|
|
signalmeter.cpp
|
|
soundin.cpp
|
|
soundout.cpp
|
|
txtune.cpp
|
|
widegraph.cpp
|
|
)
|
|
|
|
if (WIN32)
|
|
set (map65_CXXSRCS ${map65_CXXSRCS} killbyname.cpp)
|
|
endif (WIN32)
|
|
|
|
set (map65_UISRCS
|
|
about.ui
|
|
astro.ui
|
|
bandmap.ui
|
|
devsetup.ui
|
|
mainwindow.ui
|
|
messages.ui
|
|
txtune.ui
|
|
widegraph.ui
|
|
)
|
|
|
|
set (map65_C_and_CXXSRCS
|
|
${map65_CSRCS}
|
|
${map65_CXXSRCS}
|
|
)
|
|
set_property (SOURCE ${map65_C_and_CXXSRCS} APPEND_STRING PROPERTY COMPILE_FLAGS " -include wsjtx_config.h")
|
|
set_property (SOURCE ${map65_C_and_CXXSRCS} APPEND PROPERTY OBJECT_DEPENDS ${CMAKE_BINARY_DIR}/wsjtx_config.h)
|
|
|
|
# build the subdirectories
|
|
add_subdirectory (libm65)
|
|
|
|
# UI generation
|
|
qt5_wrap_ui (map65_GENUISRCS ${map65_UISRCS})
|
|
|
|
add_executable (map65 ${map65_CXXSRCS} ${map65_CSRCS} ${map65_GENUISRCS} map65.rc)
|
|
target_link_libraries (map65 m65impl ${FFTW3_LIBRARIES} Qt5::Widgets Qt5::Network Portaudio::Portaudio Usb::Usb)
|
|
|
|
install (
|
|
TARGETS map65
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
)
|