Only link sfml-main for the GUI examples in release mode.

This commit is contained in:
Lukas Dürrenberger 2015-01-07 13:02:53 +01:00
parent 7b4610b55b
commit 23cc8cfe3f
2 changed files with 4 additions and 2 deletions

View File

@ -130,7 +130,7 @@ macro(sfml_add_example target)
source_group("" FILES ${THIS_SOURCES})
# create the target
if(THIS_GUI_APP AND SFML_OS_WINDOWS)
if(THIS_GUI_APP AND SFML_OS_WINDOWS AND NOT DEFINED CMAKE_CONFIGURATION_TYPES AND ${CMAKE_BUILD_TYPE} STREQUAL "Release")
add_executable(${target} WIN32 ${THIS_SOURCES})
target_link_libraries(${target} sfml-main)
else()

View File

@ -47,8 +47,10 @@ LRESULT CALLBACK onEvent(HWND handle, UINT message, WPARAM wParam, LPARAM lParam
/// \return Error code
///
////////////////////////////////////////////////////////////
INT WINAPI WinMain(HINSTANCE instance, HINSTANCE, LPSTR, INT)
int main()
{
HINSTANCE instance = GetModuleHandle(NULL);
// Define a class for our main window
WNDCLASS windowClass;
windowClass.style = 0;