1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +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,14 +17,14 @@
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
#
ADD_LIBRARY(exec MODULE
add_library(exec MODULE
exec.c exec.h
exec-buffer.c exec-buffer.h
exec-command.c exec-command.h
exec-completion.c exec-completion.h
exec-config.c exec-config.h)
SET_TARGET_PROPERTIES(exec PROPERTIES PREFIX "")
set_target_properties(exec PROPERTIES PREFIX "")
TARGET_LINK_LIBRARIES(exec)
target_link_libraries(exec)
INSTALL(TARGETS exec LIBRARY DESTINATION ${LIBDIR}/plugins)
install(TARGETS exec LIBRARY DESTINATION ${LIBDIR}/plugins)