1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 03:33:12 +02:00

core: use lower case for CMake keywords

This commit is contained in:
Sébastien Helleu
2014-04-12 18:00:27 +02:00
parent 51d18c92e5
commit 7618fdd240
50 changed files with 1006 additions and 1035 deletions
+4 -4
View File
@@ -17,11 +17,11 @@
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
#
ADD_LIBRARY(fifo MODULE
add_library(fifo MODULE
fifo.c fifo.h
fifo-info.c fifo-info.h)
SET_TARGET_PROPERTIES(fifo PROPERTIES PREFIX "")
set_target_properties(fifo PROPERTIES PREFIX "")
TARGET_LINK_LIBRARIES(fifo)
target_link_libraries(fifo)
INSTALL(TARGETS fifo LIBRARY DESTINATION ${LIBDIR}/plugins)
install(TARGETS fifo LIBRARY DESTINATION ${LIBDIR}/plugins)