Restructuring directory layout. Move towards "Modern CMake" usage.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user