QGIS/external/astyle/CMakeLists.txt

19 lines
411 B
CMake
Raw Normal View History

2020-11-11 11:15:34 +01:00
set(ASTYLE_SRCS
2017-02-25 14:10:35 +01:00
astyle_main.cpp
ASBeautifier.cpp
ASEnhancer.cpp
ASFormatter.cpp
ASLocalizer.cpp
ASResource.cpp
)
2015-12-21 19:30:32 +11:00
# No warnings for astyle build
2020-11-11 11:15:34 +01:00
if(NOT MSVC)
set_source_files_properties(${ASTYLE_SRCS} PROPERTIES COMPILE_FLAGS -w)
endif()
add_executable(qgisstyle ${ASTYLE_SRCS})
set_target_properties(qgisstyle PROPERTIES
CXX_STANDARD 17
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/scripts
)