cmake files: change keywords to lower case

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/47/head
Michele Calgaro 2 months ago
parent 88279f93f9
commit ddab719f12
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -165,7 +165,7 @@ endif( NOT DEFINED FULL_MAKE_COMMAND )
if( NOT DEFINED MAKE_COMMAND ) if( NOT DEFINED MAKE_COMMAND )
GET_FILENAME_COMPONENT( MAKE_COMMAND "${FULL_MAKE_COMMAND}" NAME ) get_filename_component( MAKE_COMMAND "${FULL_MAKE_COMMAND}" NAME )
endif( NOT DEFINED MAKE_COMMAND ) endif( NOT DEFINED MAKE_COMMAND )

@ -1,16 +1,16 @@
#this is just a basic CMakeLists.txt, for more information see the cmake manpage #this is just a basic CMakeLists.txt, for more information see the cmake manpage
#add definitions, compiler switches, etc. #add definitions, compiler switches, etc.
ADD_DEFINITIONS(-Wall -O2) add_definitions(-Wall -O2)
#build a shared library #build a shared library
ADD_LIBRARY(%{APPNAMELC} SHARED %{APPNAMELC}.c) add_library(%{APPNAMELC} SHARED %{APPNAMELC}.c)
#for testing the shared library you probably need some test app too #for testing the shared library you probably need some test app too
ADD_EXECUTABLE(%{APPNAMELC}test %{APPNAMELC}test.c) add_executable(%{APPNAMELC}test %{APPNAMELC}test.c)
#need to link to some other libraries ? just add them here #need to link to some other libraries ? just add them here
TARGET_LINK_LIBRARIES(%{APPNAMELC}test %{APPNAMELC}) target_link_libraries(%{APPNAMELC}test %{APPNAMELC})
#add an install target here #add an install target here
#INSTALL_FILES(...) #INSTALL_FILES(...)

@ -1,16 +1,16 @@
#this is just a basic CMakeLists.txt, for more information see the cmake manpage #this is just a basic CMakeLists.txt, for more information see the cmake manpage
#add definitions, compiler switches, etc. #add definitions, compiler switches, etc.
ADD_DEFINITIONS(-Wall -O2) add_definitions(-Wall -O2)
#build a shared library #build a shared library
ADD_LIBRARY(%{APPNAMELC} SHARED %{APPNAMELC}.cpp) add_library(%{APPNAMELC} SHARED %{APPNAMELC}.cpp)
#for testing the shared library you probably need some test app too #for testing the shared library you probably need some test app too
ADD_EXECUTABLE(%{APPNAMELC}test %{APPNAMELC}test.cpp) add_executable(%{APPNAMELC}test %{APPNAMELC}test.cpp)
#need to link to some other libraries ? just add them here #need to link to some other libraries ? just add them here
TARGET_LINK_LIBRARIES(%{APPNAMELC}test %{APPNAMELC}) target_link_libraries(%{APPNAMELC}test %{APPNAMELC})
#add an install target here #add an install target here
#INSTALL_FILES(...) #INSTALL_FILES(...)

@ -2,26 +2,26 @@
# for more information see the cmake man page # for more information see the cmake man page
# add definitions, compiler switches, etc. # add definitions, compiler switches, etc.
ADD_DEFINITIONS(${QT_DEFINITIONS} -Wall -O2 -g) add_definitions(${QT_DEFINITIONS} -Wall -O2 -g)
# add the Qt include dir to the include path # add the Qt include dir to the include path
INCLUDE_DIRECTORIES(${TQT_INCLUDE_DIR}) include_directories(${TQT_INCLUDE_DIR})
# list all source files in a variable # list all source files in a variable
SET(%{APPNAMELC}_SRCS main.cpp %{APPNAMELC}.cpp) set(%{APPNAMELC}_SRCS main.cpp %{APPNAMELC}.cpp)
# specify the headers which have to be processed by moc # specify the headers which have to be processed by moc
# and collect the results in the variable given above # and collect the results in the variable given above
QT_WRAP_CPP (%{APPNAMELC} %{APPNAMELC}_SRCS %{APPNAMELC}.h) qt_wrap_cpp (%{APPNAMELC} %{APPNAMELC}_SRCS %{APPNAMELC}.h)
# create tan executable from the list of source files # create tan executable from the list of source files
ADD_EXECUTABLE(%{APPNAMELC} ${%{APPNAMELC}_SRCS}) add_executable(%{APPNAMELC} ${%{APPNAMELC}_SRCS})
# link the application to the Qt libs # link the application to the Qt libs
TARGET_LINK_LIBRARIES(%{APPNAMELC} ${TQT_LIBRARIES} ) target_link_libraries(%{APPNAMELC} ${TQT_LIBRARIES} )
# create an install rule for the executable # create an install rule for the executable
INSTALL(TARGETS %{APPNAMELC} DESTINATION bin ) install(TARGETS %{APPNAMELC} DESTINATION bin )
# if you need to install more things, take a look at the install() command # if you need to install more things, take a look at the install() command
# in the cmake man page # in the cmake man page

Loading…
Cancel
Save