mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- Fixed: CMake now asks DrawerGen to drop its output into the build folder instead of the source folder. Fixes a linker error.
This commit is contained in:
parent
1ac0fd1a90
commit
37078f7fef
1 changed files with 2 additions and 2 deletions
|
@ -678,12 +678,12 @@ add_custom_target( revision_check ALL
|
|||
if ( WIN32 )
|
||||
add_custom_target( drawergen_target ALL
|
||||
COMMAND drawergen src/r_drawersasm.obj
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||||
DEPENDS drawergen )
|
||||
else()
|
||||
add_custom_target( drawergen_target ALL
|
||||
COMMAND drawergen src/r_drawersasm.o
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||||
DEPENDS drawergen )
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue