mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-01 00:12:27 +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 )
|
if ( WIN32 )
|
||||||
add_custom_target( drawergen_target ALL
|
add_custom_target( drawergen_target ALL
|
||||||
COMMAND drawergen src/r_drawersasm.obj
|
COMMAND drawergen src/r_drawersasm.obj
|
||||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||||||
DEPENDS drawergen )
|
DEPENDS drawergen )
|
||||||
else()
|
else()
|
||||||
add_custom_target( drawergen_target ALL
|
add_custom_target( drawergen_target ALL
|
||||||
COMMAND drawergen src/r_drawersasm.o
|
COMMAND drawergen src/r_drawersasm.o
|
||||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
||||||
DEPENDS drawergen )
|
DEPENDS drawergen )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue