mirror of
https://github.com/overte-org/overte.git
synced 2025-07-04 11:29:10 +02:00
Merge pull request #4572 from jherico/console
Remove the console window created when you start interface on win32 platforms
This commit is contained in:
commit
92b4e2f1e1
1 changed files with 7 additions and 1 deletions
|
@ -103,7 +103,13 @@ if (APPLE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# create the executable, make it a bundle on OS X
|
# 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
|
# set up the external glm library
|
||||||
add_dependency_external_projects(glm bullet)
|
add_dependency_external_projects(glm bullet)
|
||||||
|
|
Loading…
Reference in a new issue