1
0
Fork 0

Set default build type to Release

This commit is contained in:
wangqr 2020-06-01 22:16:28 -04:00
parent d9e67d3b27
commit 6028c7f6cb
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,13 @@ project(Aegisub)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
# Explicitly set the build type to Release if no other type is specified
# on the command line. Without this, cmake defaults to an unoptimized,
# non-debug build, which almost nobody wants.
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
add_executable(luajit-minilua vendor/luajit/src/host/minilua.c)
if(NOT WIN32)
target_link_libraries(luajit-minilua m)