Remove the console window created when you start interface on win32 platforms

Fixing cmake typo
This commit is contained in:
Bradley Austin Davis 2015-04-01 13:36:39 -07:00 committed by Brad Davis
parent f51a259909
commit 1a02255033

View file

@ -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)