mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-18 07:02:03 +00:00
Fix tabbing of recent change to CMakeLists.txt to match previous version.
This commit is contained in:
parent
19c3529d32
commit
e9f31e5f95
1 changed files with 8 additions and 8 deletions
|
@ -48,14 +48,14 @@ function( add_pk3 PK3_NAME PK3_DIR )
|
||||||
COMMAND zipdir -udf ${ZDOOM_OUTPUT_DIR}/${PK3_NAME} ${PK3_DIR}
|
COMMAND zipdir -udf ${ZDOOM_OUTPUT_DIR}/${PK3_NAME} ${PK3_DIR}
|
||||||
DEPENDS zipdir )
|
DEPENDS zipdir )
|
||||||
endif()
|
endif()
|
||||||
# Grab a list of top-level PK3 folder files, so we can conveniently see them in the IDE
|
# Grab a list of top-level PK3 folder files, so we can conveniently see them in the IDE
|
||||||
file(GLOB PK3_SRCS ${PK3_DIR}/*)
|
file(GLOB PK3_SRCS ${PK3_DIR}/*)
|
||||||
# Touch the zipdir executable here so that the pk3s are forced to
|
# Touch the zipdir executable here so that the pk3s are forced to
|
||||||
# rebuild each time since their dependecy has "changed."
|
# rebuild each time since their dependecy has "changed."
|
||||||
add_custom_target( ${PK3_TARGET} ALL
|
add_custom_target( ${PK3_TARGET} ALL
|
||||||
COMMAND ${CMAKE_COMMAND} -E touch $<TARGET_FILE:zipdir>
|
COMMAND ${CMAKE_COMMAND} -E touch $<TARGET_FILE:zipdir>
|
||||||
DEPENDS ${ZDOOM_OUTPUT_DIR}/${PK3_NAME}
|
DEPENDS ${ZDOOM_OUTPUT_DIR}/${PK3_NAME}
|
||||||
SOURCES "${PK3_SRCS}")
|
SOURCES "${PK3_SRCS}")
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# Macro for building libraries without debugging information
|
# Macro for building libraries without debugging information
|
||||||
|
|
Loading…
Reference in a new issue