[EVENTLOG]
[reactos.git] / CMakeLists.txt
index db1b71e..6e8238f 100644 (file)
@@ -1,6 +1,17 @@
 cmake_minimum_required(VERSION 2.8)
 project(REACTOS)
 
+# Compile options
+include(config.cmake)
+
+# Compiler specific definitions and macros
+if(MSVC)
+include(msc.cmake)
+else()
+include(gcc.cmake)
+endif(MSVC)
+
+# Generic macros
 include(CMakeMacros.cmake)
 
 set(CMAKE_INCLUDE_CURRENT_DIR ON)
@@ -9,23 +20,30 @@ set(CMAKE_SHARED_LIBRARY_PREFIX "")
 
 set(CMAKE_SKIP_PREPROCESSED_SOURCE_RULES TRUE)
 set(CMAKE_SKIP_ASSEMBLY_SOURCE_RULES TRUE)
+
+set_property(GLOBAL PROPERTY RULE_MESSAGES OFF)
+
 add_definitions(-D__REACTOS__)
 
 if(NOT CMAKE_CROSSCOMPILING)
 
 add_definitions(-DTARGET_i386)
-add_definitions(-fshort-wchar)
 
 include_directories(${REACTOS_SOURCE_DIR}/tools/unicode)
 include_directories(include)
+include_directories(include/host)
 include_directories(include/reactos)
 include_directories(include/reactos/wine)
+include_directories(${REACTOS_BINARY_DIR}/include)
 
 add_subdirectory(tools)
 add_subdirectory(lib)
 
-export(TARGETS widl winebuild nci FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
+if(NOT MSVC)
+export(TARGETS widl winebuild nci buildno gendib cdmake mkhive FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
+else()
+export(TARGETS winebuild nci buildno gendib cdmake mkhive FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
+endif()
 
 else()
 
@@ -38,8 +56,15 @@ enable_language(RC)
 set(IMPORT_EXECUTABLES "${REACTOS_SOURCE_DIR}/build/ImportExecutables.cmake" CACHE FILEPATH "Host executables")
 include(${IMPORT_EXECUTABLES})
 
-# Debug Options
-add_definitions(-DDBG=1 -D_SEH_ENABLE_TRACE -DKDBG=1)
+add_definitions(-DDBG=${DBG} -DKDBG=${KDBG})
+
+if(DBG)
+add_definitions(-D_SEH_ENABLE_TRACE)
+endif(DBG)
+
+if(DBG OR KDBG)
+set(DBG_OR_KDBG true)
+endif(DBG OR KDBG)
 
 # Version Options
 add_definitions(-DWINVER=0x502 -D_WIN32_IE=0x600 -D_WIN32_WINNT=0x502 -D_WIN32_WINDOWS=0x502 -D_SETUPAPI_VER=0x502)
@@ -51,32 +76,19 @@ add_definitions(-D_M_IX86 -D_X86_ -D__i386__)
 add_definitions(-DUSE_COMPILER_EXCEPTIONS)
 add_definitions(-D_USE_32BIT_TIME_T)
 
-# Compiler Core
-add_definitions(-pipe -fms-extensions)
-
-# Debugging (Note: DWARF-4 on 4.5.1 when we ship)
-add_definitions(-gdwarf-2 -g2 -femit-struct-debug-detailed=none -feliminate-unused-debug-types)
-
-# Tuning
-add_definitions(-march=pentium -mtune=i686)
-
-# Warnings
-add_definitions(-Wall -Wno-char-subscripts -Wpointer-arith -Wno-multichar -Wno-error=uninitialized -Wno-unused-value  -Winvalid-pch)
-
-# Optimizations
-add_definitions(-Os -fno-strict-aliasing -ftracer -momit-leaf-frame-pointer -mpreferred-stack-boundary=2 -fno-set-stack-executable -fno-optimize-sibling-calls)
-
-# C++ Flags
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-rtti")
-
 include_directories(include)
 include_directories(include/psdk)
 include_directories(include/dxsdk)
+include_directories(${REACTOS_BINARY_DIR}/include)
 include_directories(${REACTOS_BINARY_DIR}/include/dxsdk)
 include_directories(${REACTOS_BINARY_DIR}/include/psdk)
 include_directories(${REACTOS_BINARY_DIR}/include/reactos)
 include_directories(include/crt)
+if(MSVC)
+include_directories(include/crt/msc)
+else()
 include_directories(include/crt/mingw32)
+endif(MSVC)
 include_directories(include/ddk)
 include_directories(include/ndk)
 include_directories(include/reactos)
@@ -85,47 +97,114 @@ include_directories(include/reactos/libs)
 add_subdirectory(include/psdk)
 add_subdirectory(include/dxsdk)
 add_subdirectory(include/reactos/idl)
+add_subdirectory(include/reactos/wine)
 add_subdirectory(include/reactos/mc)
 
+#minicd target
+set(BOOTCD_DIR "${REACTOS_BINARY_DIR}/boot/bootcd")
+
+file(MAKE_DIRECTORY "${BOOTCD_DIR}")
+file(MAKE_DIRECTORY "${BOOTCD_DIR}/loader")
+file(MAKE_DIRECTORY "${BOOTCD_DIR}/reactos")
+file(MAKE_DIRECTORY "${BOOTCD_DIR}/reactos/system32")
+
+add_custom_command(
+    OUTPUT ${REACTOS_BINARY_DIR}/minicd.iso
+    COMMAND native-cdmake -v -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/boot/freeldr/bootsect/isoboot.bin ${BOOTCD_DIR} REACTOS ${REACTOS_BINARY_DIR}/minicd.iso
+    DEPENDS native-cdmake)
+add_custom_target(minicd DEPENDS ${REACTOS_BINARY_DIR}/minicd.iso)
+add_minicd(${REACTOS_SOURCE_DIR}/boot/bootdata/bootcd.ini "" freeldr.ini)
+
+#livecd target
+set(LIVECD_DIR "${REACTOS_BINARY_DIR}/boot/livecd")
+
+file(MAKE_DIRECTORY "${LIVECD_DIR}")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/loader")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles/All Users")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles/All Users/Desktop")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles/Default User")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles/Default User/Desktop")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/Profiles/Default User/My Documents")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/reactos")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/reactos/inf")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/reactos/fonts")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/reactos/system32")
+file(MAKE_DIRECTORY "${LIVECD_DIR}/reactos/system32/config")
+
+add_custom_command(
+    OUTPUT ${REACTOS_BINARY_DIR}/livecd.iso
+    COMMAND native-cdmake -v -j -m -b ${CMAKE_CURRENT_BINARY_DIR}/boot/freeldr/bootsect/isoboot.bin ${LIVECD_DIR} REACTOS ${REACTOS_BINARY_DIR}/livecd.iso
+    DEPENDS native-cdmake)
+add_custom_target(livecd DEPENDS ${REACTOS_BINARY_DIR}/livecd.iso)
+add_livecd(${REACTOS_SOURCE_DIR}/boot/bootdata/livecd.ini "" freeldr.ini)
+
 add_subdirectory(base)
+add_subdirectory(boot)
 add_subdirectory(dll)
+add_subdirectory(drivers)
+add_subdirectory(hal)
 add_subdirectory(lib)
+add_subdirectory(media)
+add_subdirectory(ntoskrnl)
+add_subdirectory(subsystems)
 
 # nci generated intermediate files
 
-set(nci_output 
-  ${REACTOS_BINARY_DIR}/ntoskrnl/include/internal/napi.h
-  ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/include/napi.h
-  ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S
-  ${REACTOS_BINARY_DIR}/ntoskrnl/ex/zw.S
-  ${REACTOS_BINARY_DIR}/lib/win32ksys/win32k.S
-  ${REACTOS_BINARY_DIR}/dll/ntdll/def/ntsys.pspec
-)
-
-# stupid nci tool can't create folders itself, se we're gonna create them for it
-set(nci_folders
-  ${CMAKE_CURRENT_BINARY_DIR}/dll/ntdll/def
-  ${CMAKE_CURRENT_BINARY_DIR}/lib/ntdllsys/ntdll
-  ${CMAKE_CURRENT_BINARY_DIR}/lib/win32ksys
-  ${CMAKE_CURRENT_BINARY_DIR}/ntoskrnl/include/internal
-  ${CMAKE_CURRENT_BINARY_DIR}/ntoskrnl/ex
-  ${CMAKE_CURRENT_BINARY_DIR}/subsystems/win32/win32k/include
-)
+list(APPEND nci_output 
+    ${REACTOS_BINARY_DIR}/ntoskrnl/include/internal/napi.h
+    ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/include/napi.h
+    ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S
+    ${REACTOS_BINARY_DIR}/ntoskrnl/ex/zw.S
+    ${REACTOS_BINARY_DIR}/lib/win32ksys/win32k.S
+    ${REACTOS_BINARY_DIR}/dll/ntdll/def/ntsys.pspec)
+
+list(APPEND nci_folders
+    ${CMAKE_CURRENT_BINARY_DIR}/dll/ntdll/def
+    ${CMAKE_CURRENT_BINARY_DIR}/lib/ntdllsys/ntdll
+    ${CMAKE_CURRENT_BINARY_DIR}/lib/win32ksys
+    ${CMAKE_CURRENT_BINARY_DIR}/ntoskrnl/include/internal
+    ${CMAKE_CURRENT_BINARY_DIR}/ntoskrnl/ex
+    ${CMAKE_CURRENT_BINARY_DIR}/subsystems/win32/win32k/include)
 
 file(MAKE_DIRECTORY ${nci_folders})
 
-ADD_CUSTOM_COMMAND(
-  OUTPUT ${nci_output}
-  COMMAND native-nci -arch ${ARCH} ${REACTOS_SOURCE_DIR}/ntoskrnl/sysfuncs.lst ${REACTOS_SOURCE_DIR}/subsystems/win32/win32k/w32ksvc.db ${nci_output}
-  DEPENDS native-nci ${nci_folders}
-)
-
-ADD_CUSTOM_TARGET(ntdll_S ALL DEPENDS ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S)
-ADD_CUSTOM_TARGET(win32k_S ALL DEPENDS ${REACTOS_BINARY_DIR}/lib/win32ksys/win32k.S)
-ADD_CUSTOM_TARGET(ntsys_pspec ALL DEPENDS ${REACTOS_BINARY_DIR}/dll/ntdll/def/ntsys.pspec)
-ADD_CUSTOM_TARGET(kernel_napi ALL DEPENDS ${REACTOS_BINARY_DIR}/ntoskrnl/include/internal/napi.h)
-ADD_CUSTOM_TARGET(subsystem_napi ALL DEPENDS ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/include/napi.h)
-ADD_CUSTOM_TARGET(kernel_zw ALL DEPENDS ${REACTOS_BINARY_DIR}/ntoskrnl/ex/zw.S)
+add_custom_command(
+    OUTPUT ${nci_output}
+    COMMAND native-nci -arch ${ARCH} ${REACTOS_SOURCE_DIR}/ntoskrnl/sysfuncs.lst ${REACTOS_SOURCE_DIR}/subsystems/win32/win32k/w32ksvc.db ${nci_output}
+    DEPENDS native-nci ${nci_folders})
+
+set_source_files_properties(${nci_output} PROPERTIES GENERATED TRUE)
+
+add_custom_target(ntdll_S ALL DEPENDS ${REACTOS_BINARY_DIR}/lib/ntdllsys/ntdll.S)
+add_custom_target(win32k_S ALL DEPENDS ${REACTOS_BINARY_DIR}/lib/win32ksys/win32k.S)
+add_custom_target(ntsys_pspec ALL DEPENDS ${REACTOS_BINARY_DIR}/dll/ntdll/def/ntsys.pspec)
+add_custom_target(kernel_napi ALL DEPENDS ${REACTOS_BINARY_DIR}/ntoskrnl/include/internal/napi.h)
+add_custom_target(subsystem_napi ALL DEPENDS ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/include/napi.h)
+add_custom_target(kernel_zw ALL DEPENDS ${REACTOS_BINARY_DIR}/ntoskrnl/ex/zw.S)
+
+file(MAKE_DIRECTORY ${REACTOS_BINARY_DIR}/include/reactos)
+
+add_custom_command(
+    OUTPUT ${REACTOS_BINARY_DIR}/include/reactos/buildno.h
+    COMMAND native-buildno ${REACTOS_BINARY_DIR}/include/reactos/buildno.h
+    DEPENDS ${REACTOS_SOURCE_DIR}/include/reactos/version.h)
+
+add_custom_target(buildno_header ALL DEPENDS ${REACTOS_BINARY_DIR}/include/reactos/buildno.h)
+
+file(MAKE_DIRECTORY ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/dib)
+
+list(APPEND OUTPUT_FILES
+    ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/dib/dib8gen.c
+    ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/dib/dib16gen.c
+    ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/dib/dib32gen.c)
+
+add_custom_command(
+    OUTPUT ${OUTPUT_FILES}
+    COMMAND native-gendib ${REACTOS_BINARY_DIR}/subsystems/win32/win32k/dib
+    DEPENDS native-gendib) 
+
+add_custom_target(gendib_generated ALL DEPENDS ${OUTPUT_FILES})
 
 endif()