Skip to content
Snippets Groups Projects
Commit b9a33438 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Adding more binaries

parent d23cacd1
Branches
No related tags found
No related merge requests found
...@@ -20,6 +20,13 @@ project("DasherLib") ...@@ -20,6 +20,13 @@ project("DasherLib")
# set(LIBC_PATH "/work/vrdemo/unreal_engines/5.3.2/Engine/Source/ThirdParty/Unix/LibCxx/") # set(LIBC_PATH "/work/vrdemo/unreal_engines/5.3.2/Engine/Source/ThirdParty/Unix/LibCxx/")
set(LIBC_PATH "/home/ue4/UnrealEngine/Engine/Source/ThirdParty/Unix/LibCxx/") set(LIBC_PATH "/home/ue4/UnrealEngine/Engine/Source/ThirdParty/Unix/LibCxx/")
############################################################################################################
# Set Default Build Type to Release/RelWithDebugInfo
############################################################################################################
if (NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL "")
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "" FORCE)
endif()
if (UNIX) if (UNIX)
############################################################################################################ ############################################################################################################
# Flags needed for clang to use unreal's libc++ # Flags needed for clang to use unreal's libc++
...@@ -32,7 +39,6 @@ if (UNIX) ...@@ -32,7 +39,6 @@ if (UNIX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -std=c++17 -nostdinc++ -fno-exceptions -I${LIBC_PATH}include/c++/v1 -L${LIBC_PATH}lib ${LIBC_PATH}lib") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -std=c++17 -nostdinc++ -fno-exceptions -I${LIBC_PATH}include/c++/v1 -L${LIBC_PATH}lib ${LIBC_PATH}lib")
set(CMAKE_EXE_LINKER_FLAGS "-stdlib=libc++") set(CMAKE_EXE_LINKER_FLAGS "-stdlib=libc++")
############################################################################################################ ############################################################################################################
#Silence Warnings stemming from giving linker arguments to the compiler and vice versa #Silence Warnings stemming from giving linker arguments to the compiler and vice versa
############################################################################################################ ############################################################################################################
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment