Files
sethLabels/glabels-batch/CMakeLists.txt
T
Jim Evins fe6dcd6a7f Cleanup of CMakeLists.txt files.
- Bumped required cmake version to 3.9.
 - Added Appveyor CI YAML file for Windows builds
2018-12-19 23:23:59 -05:00

30 lines
596 B
CMake

project (glabels-batch LANGUAGES CXX)
#=======================================
# Sources
#=======================================
set (glabels-batch_sources
main.cpp
)
#=====================================
# Target
#=====================================
add_executable (glabels-batch-qt WIN32
${glabels-batch_sources}
)
target_compile_features (glabels-batch-qt
PUBLIC cxx_std_11
)
target_link_libraries (glabels-batch-qt
Model
)
#=======================================
# Install
#=======================================
install (TARGETS glabels-batch-qt RUNTIME DESTINATION bin)