2018-08-04 17:12:23 +00:00
|
|
|
cmake_minimum_required(VERSION 3.9)
|
2018-04-24 13:24:05 +00:00
|
|
|
project(TeaWeb-Native)
|
|
|
|
|
2018-08-04 17:12:23 +00:00
|
|
|
set (CMAKE_CXX_STANDARD 11)
|
2018-06-08 20:34:56 +00:00
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "") #Override some config values from the parent project
|
2018-04-24 13:24:05 +00:00
|
|
|
set(CMAKE_CXX_COMPILER "emcc")
|
|
|
|
set(CMAKE_C_COMPILER "emcc")
|
|
|
|
set(CMAKE_C_LINK_EXECUTABLE "emcc")
|
2019-02-17 15:08:10 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "-O3 --llvm-lto 1 --memory-init-file 0 -s WASM=1 -s ASSERTIONS=1") # -s ALLOW_MEMORY_GROWTH=1 -O3
|
2018-04-24 13:24:05 +00:00
|
|
|
set(CMAKE_VERBOSE_MAKEFILE ON)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "-s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\", \"Pointer_stringify\"]'") #
|
2018-08-08 17:32:12 +00:00
|
|
|
#add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0)
|
2018-04-24 13:24:05 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/generated/")
|
|
|
|
|
|
|
|
include_directories(libraries/tommath/)
|
|
|
|
include_directories(libraries/tomcrypt/src/headers)
|
|
|
|
include_directories(libraries/opus/include/)
|
|
|
|
add_definitions(-DLTM_DESC)
|
|
|
|
|
2018-12-26 14:53:47 +00:00
|
|
|
add_executable(TeaWeb-Worker-Codec-Opus src/opus.cpp)
|
|
|
|
target_link_libraries(TeaWeb-Worker-Codec-Opus ${CMAKE_CURRENT_SOURCE_DIR}/libraries/opus/.libs/libopus.a)
|