Restructuring directory layout. Move towards "Modern CMake" usage.

This commit is contained in:
Jim Evins
2017-11-23 22:15:24 -05:00
parent 8bec3594ec
commit b8ee5e1f73
198 changed files with 4509 additions and 5324 deletions
+29
View File
@@ -0,0 +1,29 @@
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)