Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Added and fixed build options for windows #244

Merged
merged 1 commit into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,24 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

# Force -O0 optimization level for debug builds.
set(CMAKE_CXX_FLAGS_DEBUG "-g -O0")
if (WIN32)
# Export all symbols from DLLs by default. It is necessary because there are too many of them
# to mark explicitly.
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
# 0x0600 means Windows Vista (anything after XP). This setting is needed because without it
# boost defines different API levels for different parts of the library and functions appear in
# different namespaces.
add_definitions("-DBOOST_USE_WINAPI_VERSION=0x0600")
# On windows TBB adds tbb12_debug.lib unless the following define is set. This tbb12_debug.lib
# is not present in conda-forge tbb build.
add_definitions("-D__TBB_NO_IMPLICIT_LINKAGE")
# Always use multithreaded DLL runtime (not debug) because using debug requires other dependencies
# to be built with debug runtime which we don't have.
set(CMAKE_MSVC_RUNTIME_LIBRARY MultiThreadedDLL)
set(CMAKE_CXX_FLAGS_DEBUG "/Zi /Od")
else()
set(CMAKE_CXX_FLAGS_DEBUG "-g -O0")
endif()

# set default build type to "Release w/ Debug Info"
set(default_build_type "RelWithDebInfo")
Expand Down
2 changes: 1 addition & 1 deletion omniscidb/ThirdParty/sqlite3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set_source_files_properties(sqlite3.c PROPERTIES COMPILE_FLAGS "-O0 -Wno-unused-value -Wno-parentheses-equality")
elseif(MSVC)
set_source_files_properties(sqlite3.c PROPERTIES COMPILE_FLAGS "-O0")
set_source_files_properties(sqlite3.c PROPERTIES COMPILE_FLAGS "/Od")
else()
set_source_files_properties(sqlite3.c PROPERTIES COMPILE_FLAGS "-O0 -Wno-unused-value")
endif()
Expand Down