Initial compiler entry.
This commit is contained in:
parent
a95439d419
commit
be0af2e6a7
7 changed files with 31 additions and 2 deletions
|
@ -11,6 +11,7 @@ list(APPEND TestFiles
|
|||
audio/TestAudioWriter.cpp
|
||||
audio/TestMidiReader.cpp
|
||||
core/TestBinaryStream.cpp
|
||||
compiler/TestLexer.cpp
|
||||
compression/TestStreamCompressor.cpp
|
||||
database/TestDatabase.cpp
|
||||
fonts/TestFontReader.cpp
|
||||
|
@ -31,6 +32,7 @@ list(APPEND TestNames
|
|||
TestAudioWriter
|
||||
TestMidiReader
|
||||
TestBinaryStream
|
||||
TestLexer
|
||||
TestStreamCompressor
|
||||
TestDatabase
|
||||
TestFontReader
|
||||
|
@ -54,7 +56,7 @@ link_directories(${DBUS_LIBRARY_DIRS})
|
|||
|
||||
foreach(TestFile TestName IN ZIP_LISTS TestFiles TestNames)
|
||||
add_executable(${TestName} ${TestFile})
|
||||
target_link_libraries(${TestName} PUBLIC core compression fonts network image publishing video database geometry audio graphics web client test_utils ${DBUS_LIBRARIES})
|
||||
target_link_libraries(${TestName} PUBLIC core compiler compression fonts network image publishing video database geometry audio graphics web client test_utils ${DBUS_LIBRARIES})
|
||||
endforeach()
|
||||
|
||||
|
||||
|
|
5
test/compiler/TestLexer.cpp
Normal file
5
test/compiler/TestLexer.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue