mirror of
https://github.com/lubosz/overte.git
synced 2025-04-13 20:06:16 +02:00
Remove the console window created when you start interface on win32 platforms
Fixing cmake typo
This commit is contained in:
parent
f51a259909
commit
1a02255033
1 changed files with 7 additions and 1 deletions
|
@ -103,7 +103,13 @@ if (APPLE)
|
|||
endif()
|
||||
|
||||
# create the executable, make it a bundle on OS X
|
||||
add_executable(${TARGET_NAME} MACOSX_BUNDLE ${INTERFACE_SRCS} ${QM})
|
||||
if (APPLE)
|
||||
add_executable(${TARGET_NAME} MACOSX_BUNDLE ${INTERFACE_SRCS} ${QM})
|
||||
elseif(WIN32)
|
||||
add_executable(${TARGET_NAME} WIN32 ${INTERFACE_SRCS} ${QM})
|
||||
else()
|
||||
add_executable(${TARGET_NAME} ${INTERFACE_SRCS} ${QM})
|
||||
endif()
|
||||
|
||||
# set up the external glm library
|
||||
add_dependency_external_projects(glm bullet)
|
||||
|
|
Loading…
Reference in a new issue