Skip to content

Commit

Permalink
Adicionado mais umas macros para sair no config.hpp e uma string para…
Browse files Browse the repository at this point in the history
… uma

versão custom do kernel.

O config.hpp tem constantes em forma de defines, talvez fosse melhor retirar
os defines e criar um objeto com as definições dos atributos configurados.
  • Loading branch information
psychomantys committed Nov 29, 2012
1 parent ab24461 commit fefc6c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PROJECT(miniOS)
set(miniOS_VERSION_MAJOR 0)
set(miniOS_VERSION_MINOR 0)
set(miniOS_VERSION_MINOR_FIX 1)
set(miniOS_VERSION_CUSTOM 0 CACHE STRING "Custom version string for kernel")

set(PROFILE_COMPILER "gcc" CACHE STRING "Select compiler profile for use in kernel. Options in directory: ${PROJECT_BINARY_DIR}/src/kernel/compiler")
set(PROFILE_LIBC "PDClib" CACHE STRING "Select libc profile for use in kernel to provide basic C functions. Options in directory: ${PROJECT_BINARY_DIR}/src/libc/")
Expand Down
4 changes: 4 additions & 0 deletions src/config.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#define miniOS_VERSION_MAJOR 0
#define miniOS_VERSION_MINOR 0
#define miniOS_VERSION_MINOR 1

0 comments on commit fefc6c7

Please sign in to comment.