1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Update default build settings to work with ResInsight

This commit is contained in:
jonjenssen 2022-07-07 11:00:29 +02:00
parent 75d58b3ea3
commit a7e9f3acd5
2 changed files with 3 additions and 4 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@ qrc_*
moc_*
ui_*
Makefile
/out
# IDEs
.idea

View File

@ -22,11 +22,10 @@ else()
endif()
endif()
project(QtADS LANGUAGES CXX VERSION ${VERSION_SHORT})
option(BUILD_STATIC "Build the static library" OFF)
option(BUILD_EXAMPLES "Build the examples" ON)
option(BUILD_STATIC "Build the static library" ON)
option(BUILD_EXAMPLES "Build the examples" OFF)
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
set(ads_PlatformDir "x86")
@ -40,4 +39,3 @@ if(BUILD_EXAMPLES)
add_subdirectory(examples)
add_subdirectory(demo)
endif()