added missing dependency to bin2res-target in order to build properly when using "make -jX"
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1481 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
10
ChangeLog
10
ChangeLog
@@ -1,3 +1,13 @@
|
||||
2008-08-23 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* cmake/modules/BuildPlugin.cmake:
|
||||
added missing dependency to bin2res-target in order to build properly
|
||||
when using "make -jX"
|
||||
|
||||
* CMakeLists.txt:
|
||||
improved summary page (specific information on what to do if a certain
|
||||
feature isn't enabled because something was missing)
|
||||
|
||||
2008-08-23 Paul Giblock <drfaygo/at/gmail/dot/com>
|
||||
|
||||
* plugins/bit_invader/bit_invader.cpp:
|
||||
|
||||
@@ -60,11 +60,11 @@ MACRO(BUILD_PLUGIN)
|
||||
|
||||
LIST(LENGTH PLUGIN_EMBEDDED_RESOURCES ER_LEN)
|
||||
IF(ER_LEN)
|
||||
SET(ER_H embedded_resources.h)
|
||||
|
||||
SET(ER_H ${CMAKE_CURRENT_BINARY_DIR}/embedded_resources.h)
|
||||
ADD_CUSTOM_COMMAND(OUTPUT ${ER_H}
|
||||
COMMAND ${BIN2RES}
|
||||
ARGS ${PLUGIN_EMBEDDED_RESOURCES} > ${ER_H})
|
||||
ARGS ${PLUGIN_EMBEDDED_RESOURCES} > ${ER_H}
|
||||
DEPENDS ${BIN2RES})
|
||||
ENDIF(ER_LEN)
|
||||
|
||||
QT4_WRAP_CPP(plugin_MOC_out ${PLUGIN_MOCFILES})
|
||||
@@ -72,7 +72,6 @@ MACRO(BUILD_PLUGIN)
|
||||
FOREACH(f ${PLUGIN_SOURCES})
|
||||
ADD_FILE_DEPENDENCIES(${f} ${ER_H} ${plugin_MOC_out} ${plugin_UIC_out})
|
||||
ENDFOREACH(f)
|
||||
# SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -i-static")
|
||||
|
||||
IF(LMMS_BUILD_APPLE)
|
||||
LINK_DIRECTORIES(${CMAKE_BINARY_DIR})
|
||||
|
||||
Reference in New Issue
Block a user