Annotation of imach/CMakeLists.txt, revision 1.20
1.1 brouard 1: # if(CMAKE_CONFIGURATION_TYPES)
2: # # set(CMAKE_CONFIGURATION_TYPES Debug Release DebugMX31 ReleaseMX31)
3: # set(CMAKE_CONFIGURATION_TYPES Debug Release)
4: # set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" CACHE STRING
5: # "Reset the configurations to what we need"
6: # FORCE)
7: # endif()
8: # SET (CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebinfo" CACHE STRING "" FORCE)
1.6 brouard 9: set(PACKAGE_NAME "imach")
1.1 brouard 10: SET(IMACH_VERSION_MAJOR 0)
1.19 brouard 11: SET(IMACH_VERSION_MINOR 99r18)
1.1 brouard 12: SET(IMACH_VERSION_PATCH 0)
13: SET(IMACH_VERSION_NOTE "")
14: SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR})
1.5 brouard 15: SET(@APPNAME@ IMaCh-${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR})
16: SET(@NOTINNOREG@ )
17: SET(@NOREG@ )
18: SET(@IMACHSETUPVERSION@ imach-${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR}-icl-setup)
19: SET(@APPCOMPILATIONMODE@ icl)
20: SET(@VERSION@ ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR})
1.11 brouard 21: SET(@GNUPLOTVERSION@ 5.1)
1.5 brouard 22: SET(@INFOBEFOREFILE@ README.txt)
23: SET(@LICENSEFILE@ Copying)
24: SET(@PACKAGE@ imach)
25: SET(@DICTLANG@ en)
26: SET(@VERMAJOR@ )
1.11 brouard 27: SET(@COPYRIGHT@ "Copyright (C) 2002-2015 INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121) 2013-2016- Intel Software 2015-2018")
1.1 brouard 28: #SET(IMACH_VERSION ${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR}.${IMACH_VERSION_PATCH})
29: #MATH(EXPR IMACH_VERSION_NUMBER "100000*${IMACH_VERSION_MAJOR} + 100*${IMACH_VERSION_MINOR} + ${IMACH_VERSION_PATCH}")
30:
31: # #PROJECT(IMaCh${IMACH_VERSION_MAJOR})
32: PROJECT (IMaCh)
33:
34: CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11)
35:
36: CONFIGURE_FILE(
37: "${PROJECT_SOURCE_DIR}/version.h.in"
1.2 brouard 38: "${PROJECT_SOURCE_DIR}/src/version.h"
1.1 brouard 39: )
40: CONFIGURE_FILE(
41: "${PROJECT_SOURCE_DIR}/config.h.in"
42: "${PROJECT_BINARY_DIR}/config.h"
43: )
1.5 brouard 44: # Examples for the documentation
1.4 brouard 45: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/mypar.imach.in" "html/doc/mypar.imach")
46: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/biaspar.imach.in" "html/doc/biaspar.imach")
47: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/data1.txt" "html/doc/data1.txt" COPYONLY)
48: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/data/mydata.txt" "html/doc/data/mydata.txt" COPYONLY)
1.5 brouard 49: # Test files
50: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/data/data2.txt" "tests/data/data2.txt" COPYONLY)
51: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/testV2.imach" "tests/testV2.imach" COPYONLY)
52: CONFIGURE_FILE("${PROJECT_SOURCE_DIR}/tests/testV1V2.imach" "tests/testV1V2.imach" COPYONLY)
53:
1.1 brouard 54:
55: set (imach_SRCS ./src/imach.c)
56: SET( CMAKE_VERBOSE_MAKEFILE on )
57: ADD_EXECUTABLE ( IMaCh-${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR} ${imach_SRCS})
58: INSTALL(TARGETS IMaCh-${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR} DESTINATION bin COMPONENT binaries )
59: ADD_SUBDIRECTORY(html)
1.4 brouard 60: ADD_SUBDIRECTORY(tests)
1.1 brouard 61: ADD_SUBDIRECTORY(src)
62: ADD_SUBDIRECTORY(distributions)
63: #if (${WIN32})
1.3 brouard 64: #if(APPLE)
65: # set(DOCDIR "${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}/doc")
66: #endif()
1.1 brouard 67: if(UNIX)
68: # set(CMAKE_CXX_COMPILER "gcc")
69: target_link_libraries(IMaCh-${IMACH_VERSION_MAJOR}.${IMACH_VERSION_MINOR} m)
70: set(BINDIR "${CMAKE_INSTALL_PREFIX}/bin")
71: set(DOCDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/doc")
72: set(MANDIR "${CMAKE_INSTALL_PREFIX}/share/man")
73: #set(EXAMPLE_CONF_DIR ${DOCDIR})
74: set(XDG_APPS_DIR "${CMAKE_INSTALL_PREFIX}/share/applications")
75: set(APPDATADIR "${CMAKE_INSTALL_PREFIX}/share/appdata")
76: set(ICONDIR "${CMAKE_INSTALL_PREFIX}/share/icons")
77: endif()
78: if(MSVC)
1.2 brouard 79: set(DOCDIR "${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}/doc")
1.1 brouard 80: set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
81: set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
82: set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
83: set(CMAKE_CONFIGURATION_TYPES:STRING=Release)
84: ADD_DEFINITIONS( -DCONSOLE)
85: ADD_DEFINITIONS( -D_CONSOLE)
86: endif()
87: ADD_DEFINITIONS( -DCROSS=0)
88:
89: install(FILES "html/doc/mypar.imach" DESTINATION "${DOCDIR}")
90: install(FILES "html/doc/data/mydata.txt" DESTINATION "${DOCDIR}/data")
91: install(FILES "html/doc/biaspar.imach" DESTINATION "${DOCDIR}")
92: install(FILES "html/doc/data1.txt" DESTINATION "${DOCDIR}")
1.20 ! brouard 93: #not working install(FILES "imach.desktop" DESTINATION "${XDG_APPS_DIR}")
1.1 brouard 94: #install(FILES "html" DESTINATION "${DOCDIR}")
95:
1.6 brouard 96:
1.1 brouard 97: set(CPACK_PACKAGE_VERSION ${IMACH_VERSION})
1.6 brouard 98: set(CPACK_PACKAGE_NAME "imach")
1.11 brouard 99: set(CPACK_PACKAGE_RELEASE 1)
1.1 brouard 100: set(CPACK_PACKAGE_CONTACT "Nicolas Brouard")
101: set(CPACK_PACKAGE_VENDOR "INED")
102: SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "IMaCh Interpolated Markov Chain program")
103: SET(CPACK_PACKAGE_VENDOR "IMaCh, INED")
104: SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README.txt")
105: SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/Copyright.txt")
106: SET(CPACK_PACKAGE_VERSION_MAJOR "${IMACH_VERSION_MAJOR}")
107: SET(CPACK_PACKAGE_VERSION_MINOR "${IMACH_VERSION_MINOR}")
108: SET(CPACK_PACKAGE_VERSION_PATCH "${IMACH_VERSION_PATCH}")
109: SET(CPACK_PACKAGE_INSTALL_DIRECTORY "CMake ${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}")
110: #SET(CPACK_PACKAGE_EXECUTABLES "IMaCh" "IMaCh")
111: SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "IMaCh program estimates Health Expectancies from Cross-longitudinal surveys.")
112: SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/imach-desc.txt")
113: #set(CPACK_PACKAGING_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
114: set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CPACK_PACKAGE_RELEASE}.${CMAKE_SYSTEM_PROCESSOR}")
115:
116: IF(WIN32 AND NOT UNIX)
117: # There is a bug in NSI that does not handle full unix paths properly. Make
118: # sure there is at least one set of four (4) backlasshes.
119: SET(CPACK_PACKAGE_ICON "${CMake_SOURCE_DIR}/Utilities/Release\\\\InstallIcon.bmp")
120: SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\imach.exe")
121: SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} IMaCh")
122: SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\euroreves.ined.fr/imach/wiki")
123: SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\euroreves.ined.fr/imach")
124: SET(CPACK_NSIS_CONTACT "brouard@ined.fr")
125: SET(CPACK_NSIS_MODIFY_PATH ON)
126: ELSE(WIN32 AND NOT UNIX)
127: SET(CPACK_STRIP_FILES "bin/imach")
128: SET(CPACK_SOURCE_STRIP_FILES "")
129: ENDIF(WIN32 AND NOT UNIX)
130: #SET(CPACK_PACKAGE_EXECUTABLES "IMaCh" "IMaCh")
131: INCLUDE(CPack)
132:
133: # set (CMAKE_GENERATOR_TOOLSET "v120_xp" CACHE STRING "BasePlatform toolset" FORCE)
134: # ADD_DEFINITIONS(-D_USING_V110_SDK71_)
135: # ADD_DEFINITIONS( -D_ATL_XP_TARGETING)
136: # SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:CONSOLE,5.01")
137: # set(CMAKE_C_FLAGS "/D_CONSOLE /D_ATL_XP_TARGETING /D_UNICODE")
138: #set(CMAKE_GENERATOR_TOOLSET "v120_xp" CACHE STRING "Platform toolset" FORCE)
139: #set("CMAKE_GENERATOR_TOOLSET", "vc120_xp")
140: # set (CMAKE_GENERATOR_TOOLSET "Intel C++ Compiler XE 15.0" CACHE STRING "Platform Toolset" FORCE)
141: #set (CMAKE_GENERATOR_TOOLSET "v120_xp" CACHE STRING "Platform toolset" FORCE)
142: #set (CMAKE_VS_PLATFORM_TOOLSET "v120_xp" CACHE STRING "Platform toolset" FORCE)
143: ##set (CMAKE_VS_PLATFORM_TOOLSET "v120_xp" CACHE STRING "BasePlatform toolset" FORCE)
144:
145: #https://software.intel.com/en-us/node/522398
146: # Using the msbuild.exe command line tool, use the /p:PlatformToolset and /p:BasePlatformToolset options. Example: When the Platform Toolset property is already set to use the Intel C++ compiler, to build a project using the Visual Studio 2010 environment use the following command:
147:
148: # Msbuild.exe myproject.vcxproj /p:BasePlatformToolset=v100
149:
150: # Example: To explicitly set the Platform Toolset property to use the Intel C++ compiler and build a project using the Visual Studio 2010 environment use the following command:
151:
152: # Msbuild.exe myproject.vcxproj /p:PlatformToolset=“Intel C++ Compiler XE 15.0” /p:BasePlatformToolset=v100
153: # Msbuild.exe myproject.vcxproj /p:PlatformToolset=“Intel C++ Compiler XE 15.0” /p:BasePlatformToolset=v120_xp
154: # <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'" Label="Configuration">
155: # <ConfigurationType>Application</ConfigurationType>
156: # <UseOfMfc>false</UseOfMfc>
157: # <CharacterSet>MultiByte</CharacterSet>
158: # <PlatformToolset>Intel C++ Compiler XE 15.0</PlatformToolset>
159: # <BasePlatformToolset>v120_xp</BasePlatformToolset>
160: # </PropertyGroup>
161:
162: #set (BASEPLATFORMTOOLSET "v120_xp")
163: # set(VERSION_MAJOR "0")
164: # set(VERSION_MINOR "7")
165:
166: # IF(NOT DEFINED BUILD_VERSION_PATCH)
167: # set(VERSION_PATCH "0")
168: # else()
169: # set(VERSION_PATCH "${BUILD_VERSION_PATCH}")
170: # ENDIF()
1.3 brouard 171: file( GLOB_RECURSE parameter_files RELATIVE
172: "${CMAKE_CURRENT_SOURCE_DIR}/html/doc" "html/*.imach" )
173: foreach( parameter_file ${parameter_files} )
174: add_custom_command(
175: OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${parameter_file}"
176: COMMAND cmake -E copy
177: "${CMAKE_CURRENT_SOURCE_DIR}/${parameter_file}"
178: "${CMAKE_CURRENT_BINARY_DIR}/${parameter_file}"
179: DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/${parameter_file}"
180: )
181: list( APPEND parameter_files_dest "${parameter_file}" )
182: endforeach( parameter_file )
183:
184: #add_custom_target( CopyParameter ALL DEPENDS ${parameter_files_dest} )
1.1 brouard 185: ENABLE_TESTING()
1.3 brouard 186: ADD_SUBDIRECTORY(html/doc)
187: ADD_SUBDIRECTORY(html/doc/data)
188: install(FILES "${PROJECT_SOURCE_DIR}/html/doc/mypar.imach" DESTINATION "html/doc/mypar.imach")
1.5 brouard 189: ADD_TEST(testV2.imach IMaCh-${IMACH_VERSION} tests/testV2.imach )
190: ADD_TEST(testV1V2.imach IMaCh-${IMACH_VERSION} tests/testV1V2.imach )
1.1 brouard 191: ADD_TEST(mypar IMaCh-${IMACH_VERSION} html/doc/mypar.imach )
192: ADD_TEST(biaspar IMaCh-${IMACH_VERSION} html/doc/biaspar.imach )
193: #SET(FAB "po" CACHE STRING "Some user-specified option")
194: #set_target_properties(TARGET_NAME imach-${VERSION_MAJOR}.${VERSION_MINOR})
195: #%comspec% /k ""C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat""
196: #"C:\Program Files (x86)\Intel\Composer XE 2015\bin\ipsxe-comp-vars.bat" ia32 vs2013
197: #"C:\Program Files (x86)\Intel\Composer XE 2015\bin\ipsxe-comp-vars.bat" intel64 vs2013
198: #cmake ../../src -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS_RELEASE:STRING="/MD /O2 /Ob2 /D NDEBUG"
199: #G:\imach\imach-gui\build\icl32> msbuild IMaCh-0.98q3.vcxproj /t:Build /p:Configuration=Release
200: #G:\imach\imach-gui\build\vs32>"C:\Program Files (x86)\Common Files\Intel\shared files\ia32\Bin\ICProjConvert150" IMaCh.vcxproj /IC:"Intel C++ Compiler XE 15.0"
201: #"C:\Program Files (x86)\Common Files\Intel\shared files\ia32\Bin
202: ##https://tedwvc.wordpress.com/2014/01/01/how-to-target-xp-with-vc2012-or-vc2013-and-continue-to-use-the-windows-8-x-sdk/
203: #elseif(MSVC)
204: #message(FATAL_ERROR "Fatal error")
205: # # set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")
206: # # set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")
207: # # set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/bin")
208: # # set(CMAKE_GENERATOR_TOOLSET "v120_xp" CACHE STRING "Platform toolset" FORCE)
209: # # add_subdirectory(src)
210: # # add_subdirectory(test)
211: #CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
212: # # OPTION(MYPROJECT_DEBUG
213: # # "Build the project using debugging code"
214: # # ON)
215: # # IF(MYPROJECT_DEBUG)
216: # # SET_SOURCE_FILE_PROPERTIES(
217: # # imach.c
218: # # COMPILE_FLAGS -DDEBUG)
219: # # ENDIF(MYPROJECT_DEBUG)
220: # if (${WIN32})
221: # link_directories(
222: # )
223:
224: # add_definitions(
225: # -DDEFINE1
226: # )
227:
228: # target_link_libraries(
229: # ${PROJECT_NAME}
230: # wsock32.lib
231: # )
232: # endif()
233: # if(MSVC OR MSVC_IDE)
234: # if( MSVC_VERSION LESS 1700 ) # VC10-/VS2010-
235: # message(FATAL_ERROR "The project requires C++11 features. "
236: # "You need at least Visual Studio 11 (Microsoft Visual Studio 2012), "
237: # "with Microsoft Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012).")
238: # elseif( MSVC_VERSION EQUAL 1700 ) # VC11/VS2012
239: # message( "VC11: use Microsoft Visual Studio 2012 "
240: # "with Microsoft Visual C++ Compiler Nov 2012 CTP (v120_CTP_Nov2012)" )
241: # set(CMAKE_GENERATOR_TOOLSET "v120_CTP_Nov2012" CACHE STRING "Platform Toolset" FORCE)
242: # else() # VC12+, assuming C++11 supported.
243: # endif()
244: # endif()
245: # Add a target to generate API documentation with Doxygen
1.20 ! brouard 246: option(BUILD_DOC "Build documentation" ON)
1.8 brouard 247: if(UNIX)
248: find_package(Doxygen)
1.20 ! brouard 249: if(DOXYGEN_FOUND)# set input and output files
! 250: #set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/../docs/Doxyfile.in) ~/Documents/imach/cvs/imach/latex/Doxyfile.in
! 251: set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/latex/Doxyfile.in)
! 252: set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
! 253:
! 254: # request to configure the file
! 255: configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
! 256: message("Doxygen build started")
! 257:
! 258: # note the option ALL which allows to build the docs together with the application
! 259: add_custom_target( doc_doxygen ALL
! 260: COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
! 261: WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
! 262: COMMENT "Generating API documentation with Doxygen in gnulinux/html/index.html"
! 263: VERBATIM )
! 264: install(DIRECTORY ${CMAKE_BINARY_DIR}/html
! 265: DESTINATION share/doc/${CMAKE_PROJECT_NAME})
! 266: else (DOXYGEN_FOUND)
! 267: message("Doxygen need to be installed to generate the doxygen documentation")
! 268: endif (DOXYGEN_FOUND)
! 269: else (UNIX)
! 270: message("Doxygen only in UNIX doxygen documentation")
! 271: endif (UNIX)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>