mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 12:11:25 +00:00
- fixed game sources variable in CMake
CMake Error at src/CMakeLists.txt:1233 (add_executable): No SOURCES given to target: zdoom
This commit is contained in:
parent
e0b3bdaadc
commit
af3afca658
1 changed files with 1 additions and 1 deletions
|
@ -1230,7 +1230,7 @@ set( GAME_SOURCES
|
|||
set( GAME_NONPCH_SOURCES ${GAME_SOURCES} )
|
||||
list( REMOVE_ITEM GAME_NONPCH_SOURCES ${PCH_SOURCES} )
|
||||
|
||||
add_executable( zdoom WIN32 MACOSX_BUNDLE ${ZDOOM_SOURCES} )
|
||||
add_executable( zdoom WIN32 MACOSX_BUNDLE ${GAME_SOURCES} )
|
||||
|
||||
target_precompile_headers( zdoom PRIVATE g_pch.h )
|
||||
|
||||
|
|
Loading…
Reference in a new issue