diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 15:56:28 -0400 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-23 15:56:28 -0400 |
commit | 4ca00b8d3ee6d59a6dda248687e035994290ff0a (patch) | |
tree | 957a1d26429525b7397d0aff2b7f8b255431963a /Tests/LoadCommand | |
parent | 32fcc2464f6db10814fb078f32e567e99dd03370 (diff) | |
download | cmake-4ca00b8d3ee6d59a6dda248687e035994290ff0a.tar.gz |
Some minor fixes for mac
Diffstat (limited to 'Tests/LoadCommand')
-rw-r--r-- | Tests/LoadCommand/CMakeCommands/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/LoadCommand/CMakeCommands/cmTestCommand.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Tests/LoadCommand/CMakeCommands/CMakeLists.txt b/Tests/LoadCommand/CMakeCommands/CMakeLists.txt index cf8cb0bb6b..87f0b3b3fc 100644 --- a/Tests/LoadCommand/CMakeCommands/CMakeLists.txt +++ b/Tests/LoadCommand/CMakeCommands/CMakeLists.txt @@ -8,4 +8,4 @@ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_ANSI_CXXFLAGS}") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}") INCLUDE_DIRECTORIES(${CMAKE_ROOT}/include ${CMAKE_ROOT}/Source) -ADD_LIBRARY(cmCMAKE_TEST_COMMAND SHARED cmTestCommand.c) +ADD_LIBRARY(cmCMAKE_TEST_COMMAND MODULE cmTestCommand.c) diff --git a/Tests/LoadCommand/CMakeCommands/cmTestCommand.c b/Tests/LoadCommand/CMakeCommands/cmTestCommand.c index a31e14aed0..4eca9a47d8 100644 --- a/Tests/LoadCommand/CMakeCommands/cmTestCommand.c +++ b/Tests/LoadCommand/CMakeCommands/cmTestCommand.c @@ -10,7 +10,7 @@ typedef struct /* do almost everything in the initial pass */ -int InitialPass(void *inf, void *mf, int argc, char *argv[]) +static int InitialPass(void *inf, void *mf, int argc, char *argv[]) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; @@ -32,7 +32,7 @@ int InitialPass(void *inf, void *mf, int argc, char *argv[]) return 1; } -void FinalPass(void *inf, void *mf) +static void FinalPass(void *inf, void *mf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; /* get our client data from initial pass */ @@ -45,7 +45,7 @@ void FinalPass(void *inf, void *mf) } } -void Destructor(void *inf) +static void Destructor(void *inf) { cmLoadedCommandInfo *info = (cmLoadedCommandInfo *)inf; /* get our client data from initial pass */ |