Add some comments in src/CMakeLists.txt file.

This commit is contained in:
David Capello 2010-09-30 17:42:06 -03:00
parent 3163a5ac98
commit 485582d816

View File

@ -1,14 +1,17 @@
# ASE - Allegro Sprite Editor # ASE - Allegro Sprite Editor
# Copyright (C) 2001-2010 David Capello # Copyright (C) 2001-2010 David Capello
# System libraries on Windows
if(WIN32) if(WIN32)
# Allegro library on Windows
set(alleg_lib alleg) set(alleg_lib alleg)
# System libraries on Windows
set(sys_libs set(sys_libs
User32 Shell32 ComCtl32 ComDlg32 Gdi32 Msimg32 User32 Shell32 ComCtl32 ComDlg32 Gdi32 Msimg32
WinMM AdvAPI32 Ole32 ShLwApi Vfw32 WinInet PsApi WinMM AdvAPI32 Ole32 ShLwApi Vfw32 WinInet PsApi
DDraw DxGuid DSound DInput8) DDraw DxGuid DSound DInput8)
else() else()
# Allegro library on Unix like systems
find_program(allegro_config "allegro-config") find_program(allegro_config "allegro-config")
execute_process(COMMAND ${allegro_config} --cflags execute_process(COMMAND ${allegro_config} --cflags