git-svn-id: svn://db.shs.com.ru/libs@530 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2019-04-20 23:02:07 +00:00
parent 2ec93af541
commit 526b6d4951
8 changed files with 39 additions and 9 deletions

View File

@@ -37,6 +37,7 @@ endif()
option(LIB "System install" 1)
option(DEBUG "Build with -g3" 0)
option(QGLVIEW "Build QGLview library and utils" 1)
option(UTILS "Build various utils" 1)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Wall")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -Wall")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
@@ -102,6 +103,12 @@ foreach(_v ${_QT_VERSIONS_})
endif()
endforeach()
if(UTILS)
message(STATUS "Building with utils")
else()
message(STATUS "Building only libraries")
endif()
add_subdirectory(pip)
set(_DIRS)
if (SomeQtFound)